package com.hz.phis.dt.promotion;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* 促销列表实体
|
*
|
* @author fwq
|
*/
|
@Data
|
public class PromotionListDt {
|
/**p-his的促销标识*/
|
private String id;
|
/**上下架*/
|
private Integer isUp;
|
/**编号*/
|
private String code;
|
/**促销名*/
|
private String name;
|
/**类型new_user新客old_user老客*/
|
private String type;
|
/**状态:not_start未开始,in_progress正在进行中,stop_start已结束,stop_pause暂停*/
|
private String status;
|
/**接口id*/
|
private String apiId;
|
/**促销总金额*/
|
private BigDecimal total;
|
/**门店标识*/
|
private String shopId;
|
/**门店名称*/
|
private String shopName;
|
/**有效开始时间*/
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
private String startTime;
|
/**有效结束时间*/
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
private String endTime;
|
/**删除*/
|
private Integer isDel;
|
|
private List<PromotionDt> list;
|
}
|