|
@@ -30,7 +30,6 @@ public class OrderClothAdjunct extends BaseEntity {
|
|
|
* 主键ID
|
|
|
*/
|
|
|
@ApiModelProperty("主键ID")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
@TableId(type = IdType.AUTO)
|
|
|
private Long id;
|
|
|
|
|
@@ -47,7 +46,6 @@ public class OrderClothAdjunct extends BaseEntity {
|
|
|
*/
|
|
|
@Excel(name = "附件ID")
|
|
|
@ApiModelProperty("附件ID")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long adjunctId;
|
|
|
|
|
|
/**
|
|
@@ -61,7 +59,6 @@ public class OrderClothAdjunct extends BaseEntity {
|
|
|
* 订单ID
|
|
|
*/
|
|
|
@ApiModelProperty("订单ID")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long orderId;
|
|
|
|
|
|
/**
|
|
@@ -69,7 +66,6 @@ public class OrderClothAdjunct extends BaseEntity {
|
|
|
*/
|
|
|
@Excel(name = "订单衣服ID")
|
|
|
@ApiModelProperty("订单衣服ID")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long orderClothId;
|
|
|
|
|
|
@Excel(name = "洗衣状态", readConverterExp = "0=待入厂,1=已入厂,2=已检查,3=已出厂,4=已上挂,5=已取衣,6=已到店、待送衣,7=送衣中,8=已送达、待评价,9=已完成,100=重洗,101=删除入厂,102=撤单")
|
|
@@ -77,11 +73,9 @@ public class OrderClothAdjunct extends BaseEntity {
|
|
|
private String flowStatus;
|
|
|
|
|
|
@ApiModelProperty("工厂ID")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long factoryId;
|
|
|
|
|
|
@ApiModelProperty("门店ID")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long storeId;
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
|
@@ -96,15 +90,12 @@ public class OrderClothAdjunct extends BaseEntity {
|
|
|
@ApiModelProperty("出厂时间")
|
|
|
private Date outFactoryTime;
|
|
|
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
@ApiModelProperty("入厂人员id")
|
|
|
private Long inFactoryById;
|
|
|
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
@ApiModelProperty("出厂人员id")
|
|
|
private Long outFactoryById;
|
|
|
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
@ApiModelProperty("检查人员id")
|
|
|
private Long checkClothById;
|
|
|
|