BandingTaskPageVo.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.xjrsoft.module.banding.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.Date;
  7. /**
  8. * @title: 新生分班任务分页列表出参
  9. * @Author dzx
  10. * @Date: 2024-07-01
  11. * @Version 1.0
  12. */
  13. @Data
  14. public class BandingTaskPageVo {
  15. /**
  16. *
  17. */
  18. @ContentStyle(dataFormat = 49)
  19. @ApiModelProperty("")
  20. private String id;
  21. /**
  22. *
  23. */
  24. @ContentStyle(dataFormat = 49)
  25. @ApiModelProperty("")
  26. private Integer sortCode;
  27. /**
  28. * 年级id
  29. */
  30. @ContentStyle(dataFormat = 49)
  31. @ApiModelProperty("年级id")
  32. private Long gradeId;
  33. @ContentStyle(dataFormat = 49)
  34. @ApiModelProperty("年级名称")
  35. private String gradeName;
  36. /**
  37. * 招生类型
  38. */
  39. @ContentStyle(dataFormat = 49)
  40. @ApiModelProperty("招生类型")
  41. private String enrollType;
  42. @ContentStyle(dataFormat = 49)
  43. @ApiModelProperty("招生类型-中文")
  44. private String enrollTypeCn;
  45. /**
  46. * 分班任务名称
  47. */
  48. @ContentStyle(dataFormat = 49)
  49. @ApiModelProperty("分班任务名称")
  50. private String name;
  51. @ContentStyle(dataFormat = 49)
  52. @ApiModelProperty("任务状态(0:未确认 1:已确认)")
  53. private Integer status;
  54. }