package com.hz.his.dto.marketing;
|
|
import com.hz.his.dto.PageDto;
|
import lombok.Data;
|
|
/**
|
* 营销活动
|
* @USER: fhx
|
* @DATE: 2023/7/3
|
**/
|
@Data
|
public class MarketActivityDto extends PageDto {
|
|
/** 分类id */
|
private String classifyId;
|
/** 状态:0未开始1进行中2已结束 */
|
private Integer status;
|
/** 开始时间 */
|
private String startTime;
|
/** 结束时间 */
|
private String endTime;
|
/** 是否关联优惠券 */
|
private Integer isCoupon;
|
/** 是否关联项目 */
|
private Integer isProject;
|
/** 是否同步艾芯会 */
|
private Integer isSyncCrm;
|
/** 是否上下架 */
|
private Integer isUp;
|
|
/** 会员等级 */
|
private String userLevel;
|
/** 门店id/所属门店id */
|
private String shopId;
|
/** 是否是领取优惠券 */
|
private Integer isReceiveCoupon;
|
/** 是否是使用优惠券 */
|
private Integer isUseCoupon;
|
/** 是否消费 */
|
private Integer isConsume;
|
|
/** 关联项目类型 */
|
private String commonType;
|
|
|
//-------------------
|
/** 多门店id(逗号分割) */
|
private String shopIds;
|
/** 用户id */
|
private String userId;
|
/** 到访订单id */
|
private String visitOrderId;
|
/** 营销活动id */
|
private String marketActivityId;
|
/** 营销活动关联优惠券id */
|
private String activityCouponId;
|
|
/** 平台类型(PlatformConstants) */
|
private String platformType;
|
/** 操作人标识 */
|
private String opId;
|
/** 操作人名称 */
|
private String opName;
|
/** 操作人类型(OperatorConstants) */
|
private Integer opType;
|
/** 操作人角色id(EmployeeRole) */
|
private String opRoleId;
|
|
|
}
|