|
@@ -1,5 +1,6 @@
|
|
|
package com.caimei.www.pojo.baike;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
@@ -60,6 +61,7 @@ public class BaikeProduct implements Serializable {
|
|
|
/**
|
|
|
* 上市时间
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
private Date marketTime;
|
|
|
/**
|
|
|
* 公司/供应商
|
|
@@ -68,6 +70,7 @@ public class BaikeProduct implements Serializable {
|
|
|
/**
|
|
|
* NMPA认证时间
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
private Date nmpaTime;
|
|
|
/**
|
|
|
* 适应人群
|
|
@@ -84,13 +87,30 @@ public class BaikeProduct implements Serializable {
|
|
|
/**
|
|
|
* 发布时间
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
private Date publishTime;
|
|
|
-
|
|
|
-
|
|
|
- private Integer topFlag; //是否置顶标识:0否,1是
|
|
|
- private String typeName; //分类名称
|
|
|
- private List<BaikeProductParam> paramList; // 参数列表
|
|
|
- private List<String> authImageList; // 产品认证图片列表
|
|
|
- private List<String> displayImageList; // 效果展示图片列表
|
|
|
- private List<BaikeProductQuestion> questionList; //问题列表
|
|
|
+ /**
|
|
|
+ * 是否置顶标识:0否,1是
|
|
|
+ */
|
|
|
+ private Integer topFlag;
|
|
|
+ /**
|
|
|
+ * 分类名称
|
|
|
+ */
|
|
|
+ private String typeName;
|
|
|
+ /**
|
|
|
+ * 参数列表
|
|
|
+ */
|
|
|
+ private List<BaikeProductParam> paramList;
|
|
|
+ /**
|
|
|
+ * 产品认证图片列表
|
|
|
+ */
|
|
|
+ private List<String> authImageList;
|
|
|
+ /**
|
|
|
+ * 效果展示图片列表
|
|
|
+ */
|
|
|
+ private List<String> displayImageList;
|
|
|
+ /**
|
|
|
+ * 问题列表
|
|
|
+ */
|
|
|
+ private List<BaikeProductQuestion> questionList;
|
|
|
}
|