|
@@ -1,5 +1,8 @@
|
|
|
package com.iamberry.rst.core.approval;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
import java.util.Date;
|
|
|
import java.io.Serializable;
|
|
|
/**
|
|
@@ -24,8 +27,12 @@ public class ApplyPickItem implements Serializable{
|
|
|
//产品数量
|
|
|
private Integer applyItemProductNum;
|
|
|
//创建时间
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(pattern="yyyy-MM-dd",timezone = "GMT+8")
|
|
|
private Date applyItemCreateTime;
|
|
|
- //修改时间'
|
|
|
+ //修改时间
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(pattern="yyyy-MM-dd",timezone = "GMT+8")
|
|
|
private Date applyItemUpdateTime;
|
|
|
|
|
|
public Integer getApplyItemId(){
|