ShowBpdjxjh.java 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.railway.business.bi.domain;
  2. import com.railway.common.core.domain.BaseEntity;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.util.Date;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. import org.hibernate.validator.constraints.Length;
  9. /**
  10. * 大屏展示-变配电所检修计划表
  11. *
  12. * @author ZhaoMn 2023-02-09
  13. */
  14. @Data
  15. @ApiModel("大屏展示-变配电所检修计划表")
  16. @EqualsAndHashCode(callSuper = true)
  17. public class ShowBpdjxjh extends BaseEntity {
  18. @ApiModelProperty(value = "主键", hidden = true)
  19. private String id;
  20. @ApiModelProperty(value = "线路信息")
  21. @Length(min = 1, max = 255, message = "【线路信息】长度必须介于 {min} 和 {max} 之间")
  22. private String linName;
  23. @ApiModelProperty(value = "所别")
  24. @Length(min = 1, max = 64, message = "【所别】长度必须介于 {min} 和 {max} 之间")
  25. private String substation;
  26. @ApiModelProperty(value = "所亭名称")
  27. @Length(min = 1, max = 255, message = "【所亭名称】长度必须介于 {min} 和 {max} 之间")
  28. private String substationName;
  29. @ApiModelProperty(value = "计划月")
  30. @Length(min = 1, max = 16, message = "【计划月】长度必须介于 {min} 和 {max} 之间")
  31. private String jhMonth;
  32. @ApiModelProperty(value = "计划日")
  33. @Length(min = 1, max = 16, message = "【计划日】长度必须介于 {min} 和 {max} 之间")
  34. private String jhDay;
  35. @ApiModelProperty(value = "兑现状态")
  36. @Length(min = 1, max = 1, message = "【兑现状态】长度必须介于 {min} 和 {max} 之间")
  37. private String completionState;
  38. @ApiModelProperty(value = "兑现日期")
  39. @Length(min = 1, max = 255, message = "【兑现日期】长度必须介于 {min} 和 {max} 之间")
  40. private String completionDate;
  41. @ApiModelProperty(value = "del_flag")
  42. private String delFlag;
  43. public ShowBpdjxjh() {
  44. }
  45. }