package com.railway.business.catenary.domain; import com.railway.common.core.domain.BaseEntity; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import java.util.Date; import org.hibernate.validator.constraints.Length; import javax.validation.constraints.NotNull; /** * 检测表-绝缘子清扫记录 * @author author 2021-10-21 */ @Data @ApiModel("检测表-绝缘子清扫记录") @EqualsAndHashCode(callSuper = true) public class BusJcebJyzqsjl extends BaseEntity{ @ApiModelProperty(value = "主键", hidden = true) private String id; @ApiModelProperty(value = "周期") @Length(min = 1, max = 10, message = "【周期】长度必须介于 {min} 和 {max} 之间") private String zq; @ApiModelProperty(value = "线别") @Length(min = 1, max = 10, message = "【线别】长度必须介于 {min} 和 {max} 之间") private String xb; @ApiModelProperty(value = "行别") @Length(min = 1, max = 10, message = "【行别】长度必须介于 {min} 和 {max} 之间") private String hb; @ApiModelProperty(value = "站场/区间") @Length(min = 1, max = 50, message = "【站场/区间】长度必须介于 {min} 和 {max} 之间") private String qj; @ApiModelProperty(value = "支柱号") @Length(min = 1, max = 50, message = "【支柱号】长度必须介于 {min} 和 {max} 之间") private String zzh; @ApiModelProperty(value = "数量") private Integer sl; @ApiModelProperty(value = "日期") private Date rq; @ApiModelProperty(value = "清扫人员") @Length(min = 1, max = 50, message = "【清扫人员】长度必须介于 {min} 和 {max} 之间") private String qsry; @ApiModelProperty(value = "备注") @Length(min = 1, max = 255, message = "【备注】长度必须介于 {min} 和 {max} 之间") private String bz; @ApiModelProperty(value = "提交状态 0未提交 1已提交 2已退回 9已确认") @Length(min = 1, max = 1, message = "【提交状态 0未提交 1已提交 2已退回 9已确认】长度必须介于 {min} 和 {max} 之间") private String submitState; @ApiModelProperty(value = "del_flag") @Length(min = 1, max = 1, message = "【del_flag】长度必须介于 {min} 和 {max} 之间") private String delFlag; @ApiModelProperty(value = "create_by") @Length(min = 1, max = 64, message = "【create_by】长度必须介于 {min} 和 {max} 之间") private String createBy; @ApiModelProperty(value = "update_by") @Length(min = 1, max = 64, message = "【update_by】长度必须介于 {min} 和 {max} 之间") private String updateBy; @ApiModelProperty(value = "update_time") private Date updateTime; public BusJcebJyzqsjl() { } }