Browse Source

随车资料添加移交状态字段

master
fanzongzhe 2 years ago
parent
commit
8c85e7b590
  1. 4
      anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/busvehicleinformationhandover/BusVehicleInformationHandover.java
  2. 4
      anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/busvehicleinformationhandover/BusVehicleInformationHandoverDto.java

4
anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/busvehicleinformationhandover/BusVehicleInformationHandover.java

@ -21,6 +21,10 @@ public class BusVehicleInformationHandover extends BaseEntity {
private static final long serialVersionUID = 1L;
@ApiModelProperty("交接状态")
private Integer handoverState; // 交接状态
@ApiModelProperty("移交状态key002待移交 001未移交 004已移交 003移交中")
private String transferStateKey;
@ApiModelProperty("移交状态")
private String transferStateValue;
@ApiModelProperty("车架号")
private String vinNo; // 车架号
@ApiModelProperty("车辆sid")

4
anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/busvehicleinformationhandover/BusVehicleInformationHandoverDto.java

@ -20,6 +20,10 @@ import java.util.List;
public class BusVehicleInformationHandoverDto implements Dto {
private String sid;
@ApiModelProperty("移交状态key002待移交 001未移交 004已移交 003移交中")
private String transferStateKey;
@ApiModelProperty("移交状态")
private String transferStateValue;
@ApiModelProperty("交接状态")
private Integer handoverState; // 交接状态
@ApiModelProperty("创建人sid")

Loading…
Cancel
Save