BasePersonnelLabourCapitalMonthPageVo.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package com.xjrsoft.module.personnel.vo;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. import com.alibaba.excel.annotation.write.style.ContentStyle;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. import java.util.LinkedHashMap;
  7. /**
  8. * @title: 月工资条分页列表出参
  9. * @Author brealinxx
  10. * @Date: 2024-01-25
  11. * @Version 1.0
  12. */
  13. @Data
  14. public class BasePersonnelLabourCapitalMonthPageVo {
  15. @ContentStyle(dataFormat = 49)
  16. @ExcelProperty("主键")
  17. @ApiModelProperty("主键")
  18. private String id;
  19. @ContentStyle(dataFormat = 49)
  20. @ExcelProperty("姓名")
  21. @ApiModelProperty("姓名")
  22. private String name;
  23. @ContentStyle(dataFormat = 49)
  24. @ExcelProperty("部门")
  25. @ApiModelProperty("部门")
  26. private String dept;
  27. @ContentStyle(dataFormat = 49)
  28. @ExcelProperty("总计")
  29. @ApiModelProperty("总计")
  30. private String amount;
  31. @ContentStyle(dataFormat = 49)
  32. @ExcelProperty("待处理json")
  33. @ApiModelProperty("待处理json")
  34. private String pendingJson;
  35. @ContentStyle(dataFormat = 49)
  36. @ExcelProperty("月工资明细")
  37. @ApiModelProperty("月工资明细")
  38. private LinkedHashMap<String, Object> dict;
  39. @ContentStyle(dataFormat = 49)
  40. @ExcelProperty("月份")
  41. @ApiModelProperty("月份")
  42. private int month;
  43. @ContentStyle(dataFormat = 49)
  44. @ExcelProperty("年份")
  45. @ApiModelProperty("年份")
  46. private int year;
  47. @ApiModelProperty("年份")
  48. private Long labourCapitalId;
  49. }