diff --git a/anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/busvehicleinformationhandover/BusVehicleInformationHandover.java b/anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/busvehicleinformationhandover/BusVehicleInformationHandover.java index d7754b0fe1..a6736c96f9 100644 --- a/anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/busvehicleinformationhandover/BusVehicleInformationHandover.java +++ b/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") diff --git a/anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/busvehicleinformationhandover/BusVehicleInformationHandoverDto.java b/anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/busvehicleinformationhandover/BusVehicleInformationHandoverDto.java index 063a060ca7..32bcf51ec5 100644 --- a/anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/busvehicleinformationhandover/BusVehicleInformationHandoverDto.java +++ b/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")