fwq
2024-04-15 7285f70c4804d88c175ace932956eec524e2ceda
提交 | 用户 | age
d82591 1 package com.hz.his.dto.activity;
W 2
3
4 import com.hz.his.dto.PageDto;
5 import lombok.Data;
6
34f453 7 import java.math.BigDecimal;
W 8
d82591 9 /**
W 10  * 活动规则发送参数
11  * @author wrh
12  */
13 @Data
14 public class ActivityDto extends PageDto {
15     /**门店标识 */
16     private String shopId;
f148ba 17     /**团购商品类型标识 */
0b8c09 18     private String goodsTypeId;
f148ba 19     /**团购活动标识 */
W 20     private String groupBuyId;
39ff7e 21     //appid
W 22     private String appId;
34f453 23     private String id;
W 24     private String userId;
25     private BigDecimal ordersTotal;
39ff7e 26
W 27     /**状态(活动规则)*/
28     private String status;
29     /**金额开始区间*/
30     private String startTotal;
31     /**金额结束区间*/
32     private String endTotal;
33     /**有效开始*/
34     private String startTime;
35     /**有效结束时间*/
36     private String endTime;
f148ba 37
d82591 38
W 39 }