/system/veVehicleTransfers/findById id
/** id */
private Long id;
/** 单号 */
@Excel(name = "单号")
private String transfersBill;
@Excel(name = "驾驶员")
private String transfersName;
/** 公司id */
@Excel(name = "公司id")
private Long companyId;
/** 调出门店id */
@Excel(name = "调出门店id")
private Long outShopId;
private InShop outShop;
/** 调入门店id */
@Excel(name = "调入门店id")
private Long inShopId;
private InShop inShop;
/** 调出仓库id */
@Excel(name = "调出仓库id")
private Long outWarehouseId;
private InWarehouse outWarehouse;
/** 调入仓库id */
@Excel(name = "调入仓库id")
private Long inWarehouseId;
private InWarehouse inWarehouse;
/** 调拨数量 */
@Excel(name = "调拨数量")
private Long transfersNumber;
/** 调拨人id */
@Excel(name = "调拨人id")
private Long transfersUserId;
/** 调拨时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "调拨时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date transfersDate;
/** 状态(1正常,0作废) */
@Excel(name = "状态(1正常,0作废)")
private String status;
/** 创建者姓名 */
@Excel(name = "创建者姓名")
private String createName;
/** 修改者姓名 */
@Excel(name = "修改者姓名")
private String updateName;
private List<VeVehicleTransfersItem> vehicleTransfersItemList;
{
/** 调拨单id */
@Excel(name = "调拨单id")
private Long transfersId;
/** 车辆id */
@Excel(name = "车辆id")
private Long vehicleId;
private InVehicle inVehicle;
{
/** 底盘号 */
@Excel(name = "VIN码") //vin码
private String chassisNumber;
/** 发动机号 */
@Excel(name = "发动机号") //
private String engineNumber;
@Excel(name = "厂家指导价") //
private BigDecimal guidedPrice;
//车型对象
@Excels({
@Excel(name = "代码", targetAttr = "vehicleCode", type = Excel.Type.EXPORT),
@Excel(name = "品牌", targetAttr = "brand", type = Excel.Type.EXPORT),
@Excel(name = "车型", targetAttr = "vehicleModel", type = Excel.Type.EXPORT),
@Excel(name = "款式", targetAttr = "vehicleStyle", type = Excel.Type.EXPORT),
@Excel(name = "配置", targetAttr = "configuration", type = Excel.Type.EXPORT),
@Excel(name = "外观", targetAttr = "vehicleColor", type = Excel.Type.EXPORT)
})
private VeVehicleType vehicleType;
}
/** 车辆数量 */
@Excel(name = "车辆数量")
private Long vehicleNumber;
}