|
|
@@ -7,6 +7,7 @@ import cn.com.taiji.core.entity.dict.invw.InvDeviceStatus; |
|
|
|
import cn.com.taiji.core.entity.dict.invw.OwnType; |
|
|
|
import cn.com.taiji.core.entity.dict.issue.OrderType; |
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Getter; |
|
|
|
import lombok.Setter; |
|
|
|
|
|
|
@@ -32,42 +33,61 @@ public class InvwCardDetailsViewResponseDTO extends BaseModel { |
|
|
|
|
|
|
|
private String id; |
|
|
|
|
|
|
|
private String batchId;//入库批次编号 |
|
|
|
@ApiModelProperty(value = "入库批次编号") |
|
|
|
private String batchId; |
|
|
|
|
|
|
|
private String brand;//品牌,字典新建DEVICE_BRAND |
|
|
|
@ApiModelProperty(value = "品牌,字典新建DEVICE_BRAND") |
|
|
|
private String brand; |
|
|
|
|
|
|
|
private String cardId;//ETC卡设备编号 |
|
|
|
@ApiModelProperty(value = "ETC卡设备编号") |
|
|
|
private String cardId; |
|
|
|
|
|
|
|
private CardType cardType;//ETC卡类型-储值-记账-预存卡等 |
|
|
|
@ApiModelProperty(value = "ETC卡类型-储值-记账-预存卡等") |
|
|
|
private CardType cardType; |
|
|
|
|
|
|
|
private LocalDateTime insertTime;//入库时间 |
|
|
|
@ApiModelProperty(value = "入库时间") |
|
|
|
private LocalDateTime insertTime; |
|
|
|
|
|
|
|
private InvDeviceStatus status;//是否已使用0-手动移除 1-在库 2-已使用 3-报损 |
|
|
|
@ApiModelProperty(value = "是否已使用0-手动移除 1-在库 2-已使用 3-报损") |
|
|
|
private InvDeviceStatus status; |
|
|
|
|
|
|
|
private OrderType useType;//使用场景1-发行 2-售后 |
|
|
|
@ApiModelProperty(value = "使用场景1-发行 2-售后") |
|
|
|
private OrderType useType; |
|
|
|
|
|
|
|
private String orderNo;//订单号 |
|
|
|
@ApiModelProperty(value = "订单号") |
|
|
|
private String orderNo; |
|
|
|
|
|
|
|
private String storeCode;//仓库编号 |
|
|
|
@ApiModelProperty(value = "仓库编号") |
|
|
|
private String storeCode; |
|
|
|
|
|
|
|
private String agencyId;//所属渠道编号 |
|
|
|
@ApiModelProperty(value = "所属渠道编号") |
|
|
|
private String agencyId; |
|
|
|
|
|
|
|
private String channelId;//所属网点编号 |
|
|
|
@ApiModelProperty(value = "所属网点编号") |
|
|
|
private String channelId; |
|
|
|
|
|
|
|
private String useAgencyId;//使用渠道编号 |
|
|
|
@ApiModelProperty(value = "使用渠道编号") |
|
|
|
private String useAgencyId; |
|
|
|
|
|
|
|
private String useChannelId;//使用网点编号 |
|
|
|
@ApiModelProperty(value = "使用网点编号") |
|
|
|
private String useChannelId; |
|
|
|
|
|
|
|
private LocalDateTime outTime;//出库时间 |
|
|
|
@ApiModelProperty(value = "出库时间") |
|
|
|
private LocalDateTime outTime; |
|
|
|
|
|
|
|
private DeviceVersion version;//版本 |
|
|
|
@ApiModelProperty(value = "版本") |
|
|
|
private DeviceVersion version; |
|
|
|
|
|
|
|
private String openId;//STATUS为手动移除时记录操作人员 |
|
|
|
@ApiModelProperty(value = "STATUS为手动移除时记录操作人员") |
|
|
|
private String openId; |
|
|
|
|
|
|
|
private String reason;//报损描述 |
|
|
|
@ApiModelProperty(value = "报损描述") |
|
|
|
private String reason; |
|
|
|
|
|
|
|
private OwnType ownType;// 产权类型 |
|
|
|
@ApiModelProperty(value = "产权类型") |
|
|
|
private OwnType ownType; |
|
|
|
|
|
|
|
private Boolean singleChip;//是否单片式 |
|
|
|
@ApiModelProperty(value = "是否单片式") |
|
|
|
private Boolean singleChip; |
|
|
|
|
|
|
|
} |