ExcelInfo.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package com.simuwang.base.pojo.valuation;
  2. import java.util.List;
  3. import java.util.Map;
  4. public class ExcelInfo {
  5. /** 列标题所占行数 */
  6. private int titleRows = 1;
  7. private int headerRows = 0;
  8. private int footerRows = 0;
  9. private List<String> headerInfo = null;
  10. private List<String> footerInfo = null;
  11. /** 修正后的*/
  12. private Map<String, ExcelEntity> fieldMap = null;
  13. private Map<String, Integer> cellIndexMap = null;
  14. private AssetsValuationType type = null;
  15. public int getTitleRows() {
  16. return titleRows;
  17. }
  18. public void setTitleRows(int titleRows) {
  19. this.titleRows = titleRows;
  20. }
  21. public int getHeaderRows() {
  22. return headerRows;
  23. }
  24. public void setHeaderRows(int headerRows) {
  25. this.headerRows = headerRows;
  26. }
  27. public int getFooterRows() {
  28. return footerRows;
  29. }
  30. public void setFooterRows(int footerRows) {
  31. this.footerRows = footerRows;
  32. }
  33. public List<String> getHeaderInfo() {
  34. return headerInfo;
  35. }
  36. public void setHeaderInfo(List<String> headerInfo) {
  37. this.headerInfo = headerInfo;
  38. }
  39. public List<String> getFooterInfo() {
  40. return footerInfo;
  41. }
  42. public void setFooterInfo(List<String> footerInfo) {
  43. this.footerInfo = footerInfo;
  44. }
  45. public AssetsValuationType getType() {
  46. return type;
  47. }
  48. public void setType(AssetsValuationType type) {
  49. this.type = type;
  50. }
  51. public Map<String, Integer> getCellIndexMap() {
  52. return cellIndexMap;
  53. }
  54. public void setCellIndexMap(Map<String, Integer> cellIndexMap) {
  55. this.cellIndexMap = cellIndexMap;
  56. }
  57. public Map<String, ExcelEntity> getFieldMap() {
  58. return fieldMap;
  59. }
  60. public void setFieldMap(Map<String, ExcelEntity> fieldMap) {
  61. this.fieldMap = fieldMap;
  62. }
  63. }