|
|
|
|
|
|
|
|
import cn.com.taiji.core.entity.dict.invw.OwnType; |
|
|
import cn.com.taiji.core.entity.dict.invw.OwnType; |
|
|
import cn.com.taiji.core.entity.dict.issue.OrderType; |
|
|
import cn.com.taiji.core.entity.dict.issue.OrderType; |
|
|
import io.swagger.annotations.ApiModel; |
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
import lombok.Getter; |
|
|
import lombok.Getter; |
|
|
import lombok.Setter; |
|
|
import lombok.Setter; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Setter |
|
|
@Setter |
|
|
public class InvwObuDetailsViewResponseDTO extends BaseModel { |
|
|
public class InvwObuDetailsViewResponseDTO extends BaseModel { |
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "入库批次编号") |
|
|
|
|
|
private String batchId; |
|
|
|
|
|
|
|
|
private String batchId;//入库批次编号 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "品牌,字典新建DEVICE_BRAND") |
|
|
|
|
|
private String brand; |
|
|
|
|
|
|
|
|
private String brand;//品牌,字典新建DEVICE_BRAND |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "OBU编号") |
|
|
|
|
|
private String obuId; |
|
|
|
|
|
|
|
|
private String obuId;//OBU编号 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "OBU类型1-单片式 2-双片式") |
|
|
|
|
|
private ObuType obuType; |
|
|
|
|
|
|
|
|
private ObuType obuType;//OBU类型1-单片式 2-双片式 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "入库时间") |
|
|
|
|
|
private LocalDateTime insertTime; |
|
|
|
|
|
|
|
|
private LocalDateTime insertTime;//入库时间 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "是否已使用1-在库 2-已使用 3-报损") |
|
|
|
|
|
private InvDeviceStatus status; |
|
|
|
|
|
|
|
|
private InvDeviceStatus status;//是否已使用1-在库 2-已使用 3-报损 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "使用场景1-发行 2-售后") |
|
|
|
|
|
private OrderType useType; |
|
|
|
|
|
|
|
|
private OrderType useType;//使用场景1-发行 2-售后 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "订单号") |
|
|
|
|
|
private String orderNo; |
|
|
|
|
|
|
|
|
private String orderNo;//订单号 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "仓库编号") |
|
|
|
|
|
private String storeCode; |
|
|
|
|
|
|
|
|
private String storeCode;//仓库编号 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "所属渠道编号") |
|
|
|
|
|
private String agencyId; |
|
|
|
|
|
|
|
|
private String agencyId;//所属渠道编号 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "所属网点编号") |
|
|
|
|
|
private String channelId; |
|
|
|
|
|
|
|
|
private String channelId;//所属网点编号 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "使用渠道编号") |
|
|
|
|
|
private String useAgencyId; |
|
|
|
|
|
|
|
|
private String useAgencyId;//使用渠道编号 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "使用网点编号") |
|
|
|
|
|
private String useChannelId; |
|
|
|
|
|
|
|
|
private String useChannelId;//使用网点编号 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "出库时间") |
|
|
|
|
|
private LocalDateTime outTime; |
|
|
|
|
|
|
|
|
private LocalDateTime outTime;//出库时间 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "版本") |
|
|
|
|
|
private DeviceVersion version; |
|
|
|
|
|
|
|
|
private DeviceVersion version;//版本 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "ETC卡编号,单片式设备有值") |
|
|
|
|
|
private String cardId; |
|
|
|
|
|
|
|
|
private String cardId;//ETC卡编号,单片式设备有值 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "产权类型") |
|
|
|
|
|
private OwnType ownType; |
|
|
|
|
|
|
|
|
private OwnType ownType;// 产权类型 |
|
|
|
|
|
|
|
|
|
|
|
private String reason;//报损描述 |
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "报损描述") |
|
|
|
|
|
private String reason; |
|
|
|
|
|
|
|
|
} |
|
|
} |