fwq
2022-10-24 562cb4e9395a900348e872202bb46fcf45901f07
提交 | 用户 | age
562cb4 1 package com.hz.his.dto.marketing;
F 2
3 import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
4 import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
5 import com.hx.common.annotations.MysqlHexAes;
6 import lombok.Data;
7
8 /**
9  * 营销助手请求公共参数
10  * @author fwq
11  */
12 @Data
13 public class MarketingDto{
14
15     /*******************必填项*************************/
16     /**操作人标识(员工)*/
17     private String operatorId;
18     /**操作人名称*/
19     private String opName;
20     /**操作人门店标识*/
21     private String shopId;
22     /**操作人门店名称*/
23     private String shopName;
24     /**操作人角色标识(employee_role_type)*/
25     private String roleId;
26     /**操作人角色唯一标识*/
27     private String roleUniqueStr;
28     /**客户标识*/
29     private String userId;
30     /**申请备注信息*/
31     private String remark;
32 }