CostIncomeFileVO.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.imed.costaccount.model.vo;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. /**
  6. * @author 李加喜
  7. * @Package com.imed.costaccount.model.vo
  8. * @date 2021-08-10 18:18
  9. */
  10. @Data
  11. @ApiModel("分页查询文件列表数据")
  12. public class CostIncomeFileVO {
  13. /**
  14. * 主键 文件编号
  15. */
  16. @ApiModelProperty(name = "id",value = "文件编号")
  17. private Long id;
  18. @ApiModelProperty(name = "fileType",value = "文件类型")
  19. private String fileType;
  20. @ApiModelProperty(name = "fileName",value = "文件名称")
  21. private String fileName;
  22. @ApiModelProperty(name = "successAmount",value = "导入成功记录数")
  23. private Integer successAmount;
  24. @ApiModelProperty(name = "totalAmount",value = "总记录数")
  25. private Integer totalAmount;
  26. @ApiModelProperty(name = "userName",value = "导入人员")
  27. private String userName;
  28. /**
  29. * 错误详情
  30. */
  31. private String errorList;
  32. /**
  33. * 是否显示错误详情按钮
  34. */
  35. private Integer errStatus=0;
  36. }