fwq
2022-07-22 3ce49a33f639f601e7259a9839a235647b90eac9
提交 | 用户 | age
3ce49a 1 package com.hz.phis.dt.card;
F 2
3 import com.fasterxml.jackson.annotation.JsonFormat;
4 import com.hz.phis.dt.BaseDt;
5 import lombok.Data;
6 import org.springframework.format.annotation.DateTimeFormat;
7
8 import java.math.BigDecimal;
9 import java.util.List;
10
11 /**
12  * 卡项列表实体
13  *
14  * @author fwq
15  */
16 @Data
17 public class CardListDt extends BaseDt {
18     /**上下架*/
19     private Integer isUp;
20     /**编号*/
21     private String code;
22     /**卡项名*/
23     private String name;
24     /**状态 inactivated未开始,sales销售中,off_shelves暂停销售,overdue过期,disabled作废*/
25     private String status;
26     /**卡项总金额,以元为存储(全部金额,包括优惠价格,售价)*/
27     private BigDecimal total;
28     /**门店标识*/
29     private String shopId;
30     /**门店名称*/
31     private String shopName;
32     /**有效开始时间*/
33     @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
34     @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
35     private String startTime;
36     /**有效结束时间*/
37     @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
38     @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
39     private String endTime;
40     /**列表*/
41     private List<CardItemDt> list;
42 }