|
@@ -25,6 +25,7 @@ public class TBaseOrder extends BaseEntity
|
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/** 発注ID */
|
|
/** 発注ID */
|
|
|
|
|
+ @Excel(name = "発注ID")
|
|
|
@LmLength(min = 1, max = 64, params = {"{orderId}", "64"}, groups = {ValidatorGroup.AddGroup.class})
|
|
@LmLength(min = 1, max = 64, params = {"{orderId}", "64"}, groups = {ValidatorGroup.AddGroup.class})
|
|
|
@LmType(params = {"{orderId}", "{halfNumeric}"}, checkType = CheckTypeEnum.NUMERIC, groups = {ValidatorGroup.AddGroup.class})
|
|
@LmType(params = {"{orderId}", "{halfNumeric}"}, checkType = CheckTypeEnum.NUMERIC, groups = {ValidatorGroup.AddGroup.class})
|
|
|
private String orderId;
|
|
private String orderId;
|
|
@@ -46,9 +47,11 @@ public class TBaseOrder extends BaseEntity
|
|
|
private String monthYear;
|
|
private String monthYear;
|
|
|
|
|
|
|
|
/** バージョン */
|
|
/** バージョン */
|
|
|
|
|
+ @Excel(name = "バージョン")
|
|
|
private String version;
|
|
private String version;
|
|
|
|
|
|
|
|
/** 輸送パートナー名 */
|
|
/** 輸送パートナー名 */
|
|
|
|
|
+ @Excel(name = "輸送パートナー名")
|
|
|
private String partnerName;
|
|
private String partnerName;
|
|
|
|
|
|
|
|
/** 線便ID */
|
|
/** 線便ID */
|
|
@@ -92,15 +95,15 @@ public class TBaseOrder extends BaseEntity
|
|
|
private String newData;
|
|
private String newData;
|
|
|
|
|
|
|
|
/** エリア */
|
|
/** エリア */
|
|
|
- @Excel(name = "エリア")
|
|
|
|
|
|
|
+ @Excel(name = "エリア", readConverterExp = "11=男,12=関西,13=中部")
|
|
|
private String area;
|
|
private String area;
|
|
|
|
|
|
|
|
/** 区間種別 */
|
|
/** 区間種別 */
|
|
|
- @Excel(name = "区間種別")
|
|
|
|
|
|
|
+ @Excel(name = "区間種別", readConverterExp = "1=横持,2=輸送")
|
|
|
private Long sectionType;
|
|
private Long sectionType;
|
|
|
|
|
|
|
|
/** ステータス */
|
|
/** ステータス */
|
|
|
- @Excel(name = "ステータス")
|
|
|
|
|
|
|
+ @Excel(name = "ステータス", readConverterExp = "1=未承諾,2=承諾,3=変更未承諾,4=変更承諾,5=キャンセル未承諾,6=キャンセル承諾")
|
|
|
private Integer orderStatus;
|
|
private Integer orderStatus;
|
|
|
|
|
|
|
|
private List<Integer> statusList;
|
|
private List<Integer> statusList;
|
|
@@ -116,7 +119,6 @@ public class TBaseOrder extends BaseEntity
|
|
|
|
|
|
|
|
/** 入庫時間 */
|
|
/** 入庫時間 */
|
|
|
@JsonFormat(pattern = "HH:mm")
|
|
@JsonFormat(pattern = "HH:mm")
|
|
|
- @Excel(name = "入庫時間", width = 30, dateFormat = "HH:mm")
|
|
|
|
|
private Date wareHouseTime;
|
|
private Date wareHouseTime;
|
|
|
|
|
|
|
|
/** 承諾日 */
|
|
/** 承諾日 */
|
|
@@ -132,12 +134,10 @@ public class TBaseOrder extends BaseEntity
|
|
|
private String actionId;
|
|
private String actionId;
|
|
|
|
|
|
|
|
/** アクションコード */
|
|
/** アクションコード */
|
|
|
- @Excel(name = "アクションコード")
|
|
|
|
|
private String actionCode;
|
|
private String actionCode;
|
|
|
|
|
|
|
|
/** 発生日 */
|
|
/** 発生日 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm")
|
|
|
- @Excel(name = "発生日", width = 30, dateFormat = "yyyy-MM-dd HH:mm")
|
|
|
|
|
private Date actionDate;
|
|
private Date actionDate;
|
|
|
|
|
|
|
|
/** アクション種別 */
|
|
/** アクション種別 */
|