|
@@ -1,5 +1,6 @@
|
|
package com.caimei.module.base.entity.po;
|
|
package com.caimei.module.base.entity.po;
|
|
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
@@ -426,11 +427,13 @@ public class Product implements Serializable {
|
|
/**
|
|
/**
|
|
* 活动开始时间
|
|
* 活动开始时间
|
|
*/
|
|
*/
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date beginTime;
|
|
private Date beginTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 活动结束时间
|
|
* 活动结束时间
|
|
*/
|
|
*/
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date endTime;
|
|
private Date endTime;
|
|
|
|
|
|
private Integer shopIndexModuleID;
|
|
private Integer shopIndexModuleID;
|