package com.hz.his.dto.marketing; import com.gitee.sunchenbin.mybatis.actable.annotation.Column; import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant; import com.hx.common.annotations.MysqlHexAes; import lombok.Data; /** * 营销助手请求公共参数 * @author fwq */ @Data public class MarketingDto{ /*******************必填项*************************/ /**操作人标识(员工)*/ private String operatorId; /**操作人名称*/ private String opName; /**操作人门店标识*/ private String shopId; /**操作人门店名称*/ private String shopName; /**操作人角色标识(employee_role_type)*/ private String roleId; /**操作人角色唯一标识*/ private String roleUniqueStr; /**客户标识*/ private String userId; /**申请备注信息*/ private String remark; }