|
|
@@ -1,11 +1,13 @@
|
|
|
package com.fs.hisStore.vo;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.fs.common.annotation.Excel;
|
|
|
import com.fs.hisStore.dto.StoreOrderProductDTO;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
|
@@ -75,6 +77,14 @@ public class FsStoreProductPacketVO implements Serializable
|
|
|
@Excel(name = "赠送积分")
|
|
|
private Integer integral;
|
|
|
|
|
|
+ /** 创建时间 */
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ /** 修改时间 */
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ private Date updateTime;
|
|
|
+
|
|
|
List<StoreOrderProductDTO> productList;
|
|
|
|
|
|
}
|