BandingTaskRuleVo.java 853 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.xjrsoft.module.banding.vo;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. /**
  5. * @title: 新生分班任务规则表单出参
  6. * @Author dzx
  7. * @Date: 2024-07-01
  8. * @Version 1.0
  9. */
  10. @Data
  11. public class BandingTaskRuleVo {
  12. /**
  13. *
  14. */
  15. @ApiModelProperty("")
  16. private Long id;
  17. /**
  18. *
  19. */
  20. @ApiModelProperty("")
  21. private Integer sortCode;
  22. /**
  23. * 新生分班规则(banding_rule)
  24. */
  25. @ApiModelProperty("规则名称")
  26. private String name;
  27. /**
  28. * 分班任务(banding_task)
  29. */
  30. @ApiModelProperty("规则code")
  31. private String code;
  32. @ApiModelProperty("选择方式(radtio:单选, multi:多选)")
  33. private String chooseType;
  34. @ApiModelProperty("是否被选上(1:是 0:否)")
  35. private Integer isSelected;
  36. private Long bandingTaskRuleId;
  37. }