fhx
2023-08-02 a8b60bd5967f7d56065e2a4e967a305a7a1a3823
提交 | 用户 | 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
42
43     //-------------------
26ba55 44     /** 多门店id(逗号分割) */
F 45     private String shopIds;
46     /** 用户id */
47     private String userId;
48     /** 到访订单id */
49     private String visitOrderId;
50     /** 营销活动id */
51     private String marketActivityId;
52     /** 营销活动关联优惠券id */
53     private String activityCouponId;
54
a8b60b 55     /** 平台类型(PlatformConstants) */
26ba55 56     private String platformType;
F 57     /** 操作人标识 */
58     private String opId;
59     /** 操作人名称 */
60     private String opName;
a8b60b 61     /** 操作人类型(OperatorConstants) */
26ba55 62     private Integer opType;
a8b60b 63     /** 操作人角色id(EmployeeRole) */
F 64     private String opRoleId;
65
26ba55 66
F 67 }