PbVXssfdetailExcelVo.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package com.xjrsoft.module.student.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. /**
  7. * @title: 分页列表出参
  8. * @Author dzx
  9. * @Date: 2024-03-13
  10. * @Version 1.0
  11. */
  12. @Data
  13. public class PbVXssfdetailExcelVo {
  14. @ContentStyle(dataFormat = 49)
  15. @ExcelProperty("学号")
  16. @ApiModelProperty("学号")
  17. private String studentId;
  18. @ContentStyle(dataFormat = 49)
  19. @ExcelProperty("学生姓名")
  20. @ApiModelProperty("学生姓名")
  21. private String name;
  22. @ContentStyle(dataFormat = 49)
  23. @ExcelProperty("性别中文")
  24. @ApiModelProperty("性别中文")
  25. private String genderCn;
  26. @ContentStyle(dataFormat = 49)
  27. @ExcelProperty("学期")
  28. @ApiModelProperty("学期")
  29. private String semesterName;
  30. @ContentStyle(dataFormat = 49)
  31. @ExcelProperty("收费项目")
  32. @ApiModelProperty("收费项目")
  33. private String feeitemname;
  34. @ContentStyle(dataFormat = 49)
  35. @ExcelProperty("类型")
  36. @ApiModelProperty("类型")
  37. private String category;
  38. @ContentStyle(dataFormat = 49)
  39. @ExcelProperty("支付金额")
  40. @ApiModelProperty("支付金额")
  41. private Double mny;
  42. @ContentStyle(dataFormat = 49)
  43. @ExcelProperty("支付类型")
  44. @ApiModelProperty("支付类型")
  45. private String paytype;
  46. @ContentStyle(dataFormat = 49)
  47. @ExcelProperty("支付时间")
  48. @ApiModelProperty("支付时间")
  49. private String paydate;
  50. @ContentStyle(dataFormat = 49)
  51. @ExcelProperty("订单号")
  52. @ApiModelProperty("订单号")
  53. private String payorder;
  54. }