ImportResult.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package com.chuanghai.attendance.utils.excel;
  2. import java.util.List;
  3. public class ImportResult {
  4. private Integer successNum;
  5. private String successInfo;
  6. private Integer errorNum;
  7. private String errorInfo;
  8. private Integer otherNum;
  9. private String otherInfo;
  10. private String updateInfo;
  11. private List<CellResult> updateList;
  12. private List<CellResult> successList;
  13. private List<CellResult> errorList;
  14. private List<CellResult> otherList;
  15. public Integer getSuccessNum() {
  16. return successNum;
  17. }
  18. public void setSuccessNum(Integer successNum) {
  19. this.successNum = successNum;
  20. }
  21. public String getSuccessInfo() {
  22. return successInfo;
  23. }
  24. public void setSuccessInfo(String successInfo) {
  25. this.successInfo = successInfo;
  26. }
  27. public Integer getErrorNum() {
  28. return errorNum;
  29. }
  30. public void setErrorNum(Integer errorNum) {
  31. this.errorNum = errorNum;
  32. }
  33. public String getErrorInfo() {
  34. return errorInfo;
  35. }
  36. public void setErrorInfo(String errorInfo) {
  37. this.errorInfo = errorInfo;
  38. }
  39. public Integer getOtherNum() {
  40. return otherNum;
  41. }
  42. public void setOtherNum(Integer otherNum) {
  43. this.otherNum = otherNum;
  44. }
  45. public String getOtherInfo() {
  46. return otherInfo;
  47. }
  48. public void setOtherInfo(String otherInfo) {
  49. this.otherInfo = otherInfo;
  50. }
  51. public List<CellResult> getSuccessList() {
  52. return successList;
  53. }
  54. public void setSuccessList(List<CellResult> successList) {
  55. this.successList = successList;
  56. }
  57. public List<CellResult> getErrorList() {
  58. return errorList;
  59. }
  60. public void setErrorList(List<CellResult> errorList) {
  61. this.errorList = errorList;
  62. }
  63. public List<CellResult> getOtherList() {
  64. return otherList;
  65. }
  66. public void setOtherList(List<CellResult> otherList) {
  67. this.otherList = otherList;
  68. }
  69. public String getUpdateInfo() {
  70. return updateInfo;
  71. }
  72. public void setUpdateInfo(String updateInfo) {
  73. this.updateInfo = updateInfo;
  74. }
  75. public List<CellResult> getUpdateList() {
  76. return updateList;
  77. }
  78. public void setUpdateList(List<CellResult> updateList) {
  79. this.updateList = updateList;
  80. }
  81. }