|
@@ -40,7 +40,10 @@ public class WorkLog implements Serializable {
|
|
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
|
|
private Long cycleId;
|
|
private Long cycleId;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "日志类型")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "日志类型:1-执行装车运单 2-车辆启动 10-完成出车前检查 20-到达装车点 21-开始装车 22-结束装车" +
|
|
|
|
|
+ "28-进入装车点围栏 29-离开装车点围栏 30-完成装车运单 40-执行卸车运单 50-到达卸车点 51-开始卸车 52-结束卸车" +
|
|
|
|
|
+ "58-进入卸车点围栏 59-离开卸车点围栏 60-完成卸车运单 70-到达收车点 80-完成收车后检查" +
|
|
|
|
|
+ "91-开始途中维修 92-结束途中维修 93-开始途中休息 94-结束途中休息")
|
|
|
@TableField("type")
|
|
@TableField("type")
|
|
|
private Integer type;
|
|
private Integer type;
|
|
|
|
|
|
|
@@ -82,6 +85,26 @@ public class WorkLog implements Serializable {
|
|
|
@TableField("trailer_number")
|
|
@TableField("trailer_number")
|
|
|
private String trailerNumber;
|
|
private String trailerNumber;
|
|
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "成果报备皮重")
|
|
|
|
|
+ @TableField("pi_weight")
|
|
|
|
|
+ private String piWeight;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "成果报备毛重")
|
|
|
|
|
+ @TableField("mao_weight")
|
|
|
|
|
+ private String maoWeight;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "成果报备净重")
|
|
|
|
|
+ @TableField("jing_weight")
|
|
|
|
|
+ private String jingWeight;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "开始时间")
|
|
|
|
|
+ @TableField("start_time")
|
|
|
|
|
+ private LocalDateTime startTime;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "结束时间")
|
|
|
|
|
+ @TableField("end_time")
|
|
|
|
|
+ private LocalDateTime endTime;
|
|
|
|
|
+
|
|
|
@ApiModelProperty(value = "创建人id")
|
|
@ApiModelProperty(value = "创建人id")
|
|
|
@TableField("creater")
|
|
@TableField("creater")
|
|
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|