|
@@ -1,11 +1,12 @@
|
|
|
package com.caimei.module.base.entity.po;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
|
|
|
-import lombok.Data;
|
|
|
-
|
|
|
/**
|
|
|
* product
|
|
|
*
|
|
@@ -469,11 +470,13 @@ public class Product implements Serializable {
|
|
|
/**
|
|
|
* 活动开始时间(对应actStatus的活动下使用)
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private Date beginTime;
|
|
|
|
|
|
/**
|
|
|
* 活动结束时间(对应actStatus的活动下使用)
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private Date endTime;
|
|
|
|
|
|
/**
|