fwq
2023-09-19 97bb8aca42a1d734380d4dde460f8ce389196a01
提交 | 用户 | age
26ba55 1 package com.hz.his.dto.marketing;
F 2
3 import com.hz.his.dto.PageDto;
4 import lombok.Data;
5
6 /**
7  * 营销活动
8  * @USER: fhx
9  * @DATE: 2023/7/3
10  **/
11 @Data
12 public class MarketActivityDto extends PageDto {
13
14     /** 分类id */
15     private String classifyId;
a8b60b 16     /** 状态:0未开始1进行中2已结束 */
26ba55 17     private Integer status;
F 18     /** 开始时间 */
19     private String startTime;
20     /** 结束时间 */
21     private String endTime;
22     /** 是否关联优惠券 */
23     private Integer isCoupon;
24     /** 是否关联项目 */
25     private Integer isProject;
26     /** 是否同步艾芯会 */
27     private Integer isSyncCrm;
a8b60b 28     /** 是否上下架 */
F 29     private Integer isUp;
26ba55 30
a8b60b 31     /** 会员等级 */
F 32     private String userLevel;
33     /** 门店id/所属门店id */
34     private String shopId;
35     /** 是否是领取优惠券 */
36     private Integer isReceiveCoupon;
37     /** 是否是使用优惠券 */
38     private Integer isUseCoupon;
39     /** 是否消费 */
40     private Integer isConsume;
41
07737f 42     /** 关联项目类型 */
F 43     private String commonType;
44
a8b60b 45
F 46     //-------------------
26ba55 47     /** 多门店id(逗号分割) */
F 48     private String shopIds;
49     /** 用户id */
50     private String userId;
51     /** 到访订单id */
52     private String visitOrderId;
53     /** 营销活动id */
54     private String marketActivityId;
55     /** 营销活动关联优惠券id */
56     private String activityCouponId;
57
a8b60b 58     /** 平台类型(PlatformConstants) */
26ba55 59     private String platformType;
F 60     /** 操作人标识 */
61     private String opId;
62     /** 操作人名称 */
63     private String opName;
a8b60b 64     /** 操作人类型(OperatorConstants) */
26ba55 65     private Integer opType;
a8b60b 66     /** 操作人角色id(EmployeeRole) */
F 67     private String opRoleId;
68
26ba55 69
F 70 }