| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- package com.chuanghai.attendance.utils.excel;
- import java.util.List;
- public class ImportResult {
- private Integer successNum;
- private String successInfo;
- private Integer errorNum;
- private String errorInfo;
- private Integer otherNum;
- private String otherInfo;
- private String updateInfo;
- private List<CellResult> updateList;
- private List<CellResult> successList;
- private List<CellResult> errorList;
- private List<CellResult> otherList;
- public Integer getSuccessNum() {
- return successNum;
- }
- public void setSuccessNum(Integer successNum) {
- this.successNum = successNum;
- }
- public String getSuccessInfo() {
- return successInfo;
- }
- public void setSuccessInfo(String successInfo) {
- this.successInfo = successInfo;
- }
- public Integer getErrorNum() {
- return errorNum;
- }
- public void setErrorNum(Integer errorNum) {
- this.errorNum = errorNum;
- }
- public String getErrorInfo() {
- return errorInfo;
- }
- public void setErrorInfo(String errorInfo) {
- this.errorInfo = errorInfo;
- }
- public Integer getOtherNum() {
- return otherNum;
- }
- public void setOtherNum(Integer otherNum) {
- this.otherNum = otherNum;
- }
- public String getOtherInfo() {
- return otherInfo;
- }
- public void setOtherInfo(String otherInfo) {
- this.otherInfo = otherInfo;
- }
- public List<CellResult> getSuccessList() {
- return successList;
- }
- public void setSuccessList(List<CellResult> successList) {
- this.successList = successList;
- }
- public List<CellResult> getErrorList() {
- return errorList;
- }
- public void setErrorList(List<CellResult> errorList) {
- this.errorList = errorList;
- }
- public List<CellResult> getOtherList() {
- return otherList;
- }
- public void setOtherList(List<CellResult> otherList) {
- this.otherList = otherList;
- }
- public String getUpdateInfo() {
- return updateInfo;
- }
- public void setUpdateInfo(String updateInfo) {
- this.updateInfo = updateInfo;
- }
- public List<CellResult> getUpdateList() {
- return updateList;
- }
- public void setUpdateList(List<CellResult> updateList) {
- this.updateList = updateList;
- }
- }
|