| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package com.railway.business.baseinfo.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 org.hibernate.validator.constraints.Length;
- /**
- * 基础数据-无交叉线岔
- * @author zcf 2021-10-27
- */
- @Data
- @ApiModel("基础数据-无交叉线岔")
- @EqualsAndHashCode(callSuper = true)
- public class BusWjcxc extends BaseEntity{
- @ApiModelProperty(value = "主键", hidden = true)
- private String id;
- @ApiModelProperty(value = "车间ID")
- private String deptId;
- @ApiModelProperty(value = "所属部门")
- private String deptName;
- @ApiModelProperty(value = "线别ID")
- private String lineId;
- @ApiModelProperty(value = "线别")
- private String lineName;
- @ApiModelProperty(value = "区间ID")
- @Length(min = 1, max = 20, message = "【区间ID】长度必须介于 {min} 和 {max} 之间")
- private String stationId;
- @ApiModelProperty(value = "站/区间")
- private String stationName;
- @ApiModelProperty(value = "行别")
- @Length(min = 1, max = 50, message = "【行别】长度必须介于 {min} 和 {max} 之间")
- private String xingbie;
- @ApiModelProperty(value = "行别")
- private String xingbieText;
- @ApiModelProperty(value = "支柱范围")
- @Length(min = 1, max = 50, message = "【支柱号】长度必须介于 {min} 和 {max} 之间")
- private String pillarArea;
- @ApiModelProperty(value = "股道")
- @Length(min = 1, max = 100, message = "【股道】长度必须介于 {min} 和 {max} 之间")
- private String stationTrack;
- @ApiModelProperty(value = "管辖模式")
- @Length(min = 1, max = 50, message = "【管辖模式】长度必须介于 {min} 和 {max} 之间")
- private String gxms;
- @ApiModelProperty(value = "道岔编号")
- @Length(min = 1, max = 50, message = "【道岔编号】长度必须介于 {min} 和 {max} 之间")
- private String dcbh;
- @ApiModelProperty(value = "线岔号")
- @Length(min = 1, max = 50, message = "【线岔号】长度必须介于 {min} 和 {max} 之间")
- private String xch;
- @ApiModelProperty(value = "无交叉线岔类型")
- @Length(min = 1, max = 50, message = "【无交叉线岔类型】长度必须介于 {min} 和 {max} 之间")
- private String wjcxclx;
- @ApiModelProperty(value = "数据编号")
- @Length(min = 1, max = 50, message = "【数据编号】长度必须介于 {min} 和 {max} 之间")
- private String sjbh;
- @ApiModelProperty(value = "del_flag")
- @Length(min = 1, max = 1, message = "【del_flag】长度必须介于 {min} 和 {max} 之间")
- private String delFlag;
- }
|