【工艺路线】有效起始日格式
This commit is contained in:
parent
e1e97c9135
commit
c8eb77a4b1
|
|
@ -1,5 +1,6 @@
|
|||
package com.nflg.product.technology.pojo.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
|
|
@ -63,9 +64,11 @@ public class ProcessRouteTaskAssemblyVO implements Serializable {
|
|||
private String parentMaterialNo;
|
||||
|
||||
// 有效起始日
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT-8")
|
||||
private LocalDateTime expireStartTime;
|
||||
|
||||
// 有效至
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT-8")
|
||||
private LocalDateTime expireEndTime;
|
||||
|
||||
// 删除标记:0=未删除、1=已删除
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
package com.nflg.product.technology.pojo.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
|
|
@ -56,9 +57,11 @@ public class ProcessRouteTaskProcessesVO implements Serializable {
|
|||
private String materialUnit;
|
||||
|
||||
// 有效起始日
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT-8")
|
||||
private LocalDateTime expireStartTime;
|
||||
|
||||
// 有效至
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT-8")
|
||||
private LocalDateTime expireEndTime;
|
||||
|
||||
// 活动类型
|
||||
|
|
|
|||
|
|
@ -49,9 +49,11 @@ public class ProcessRouteTaskVO extends BaseMaterialVO implements Serializable {
|
|||
private String toBatch;
|
||||
|
||||
// 有效起始日
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT-8")
|
||||
private LocalDateTime expireStartTime;
|
||||
|
||||
// 有效至
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT-8")
|
||||
private LocalDateTime expireEndTime;
|
||||
|
||||
// 删除标记:0=未删除、1=已删除
|
||||
|
|
|
|||
Loading…
Reference in New Issue