Commit 57f9610e by ice

修改采购订单的实体类

parent b16d01c5
...@@ -5,6 +5,9 @@ import java.util.HashMap; ...@@ -5,6 +5,9 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
import java.util.List; import java.util.List;
import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
/** /**
* *
* @author author * @author author
...@@ -34,6 +37,8 @@ public class PurOrderHeader implements Serializable { ...@@ -34,6 +37,8 @@ public class PurOrderHeader implements Serializable {
* isNullAble:1 * isNullAble:1
*/ */
@JSONField(name = "create_time") @JSONField(name = "create_time")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private java.time.LocalDateTime createTime; private java.time.LocalDateTime createTime;
/** /**
...@@ -48,6 +53,8 @@ public class PurOrderHeader implements Serializable { ...@@ -48,6 +53,8 @@ public class PurOrderHeader implements Serializable {
* isNullAble:1 * isNullAble:1
*/ */
@JSONField(name = "update_time") @JSONField(name = "update_time")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private java.time.LocalDateTime updateTime; private java.time.LocalDateTime updateTime;
/** /**
...@@ -160,6 +167,8 @@ public class PurOrderHeader implements Serializable { ...@@ -160,6 +167,8 @@ public class PurOrderHeader implements Serializable {
* isNullAble:0 * isNullAble:0
*/ */
@JSONField(name = "order_date") @JSONField(name = "order_date")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private java.time.LocalDateTime orderDate; private java.time.LocalDateTime orderDate;
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment