|
|
@@ -0,0 +1,41 @@
|
|
|
+package com.railway.business.baseinfo.domain;
|
|
|
+
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author wuhonghao
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@ApiModel("十防台账")
|
|
|
+public class BusPrevent {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "主键", hidden = true)
|
|
|
+ private String preventId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "线别ID")
|
|
|
+ private String lineId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "行别")
|
|
|
+ private String xingbie;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "场站ID")
|
|
|
+ private String stationId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "支柱号")
|
|
|
+ private String pillar_code;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "台账类别")
|
|
|
+ private String record_type;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "公里标")
|
|
|
+ private String marker;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "风险源")
|
|
|
+ private String risk_source;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "采取措施")
|
|
|
+ private String measures;
|
|
|
+
|
|
|
+}
|