fwq
2023-03-23 6d885783878f73a00048a391b42d90bd54fd4ca1
提交 | 用户 | age
f5bce1 1 package com.hz.his.dto.channel;
7c680b 2
C 3 import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
4 import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
5 import lombok.Data;
f5bce1 6 /**
F 7  * @author fwq
8  * 渠道扩展
9  * */
7c680b 10 @Data
f5bce1 11 public class ChannelDto {
7c680b 12
C 13     /**渠道标识*/
14     private String id;
15     /**渠道分类标识(ChannelsType)(必填,代码判断)*/
16     private String channelsTypeId;
17     /**是否启用:0否1是*/
18     private Integer isUp;
19     /**是否一级:0否1是*/
20     private Integer isLevelOne;
21
22     /**渠道编号(不填就自动生成,不可更改)*/
23     private String channelNo;
24     /**商户类型1个人2企业*/
25     private Integer merchantType;
26     /**渠道名称*/
27     private String name;
28
29     /**省*/
30     private String province;
31     /**市*/
32     private String city;
33     /**区*/
34     private String area;
35     /**办公地址*/
36     private String address;
37
38     /**渠道联系人名称*/
39     private String contacts;
40     /**渠道联系人手机*/
41     private String tel;
42     /**渠道联系人邮箱*/
43     private String email;
44     /**营业执照[JSON数组]:[{"imgUrl":"1"},{"imgUrl":"2"}]*/
45     private String license;
46     /**备注*/
47     private String remarks;
48     /**父类标识(Channels)*/
49     private String parentId;
50     /**渠道商家标识(ChannelsBusiness)*/
51     private String businessId;
52
53     /**归属部门标识(Department)*/
54     private String departmentId;
55     /**业务代表标识*/
56     private String busRepId;
57     /**专属客服/美导标识*/
58     @Column(comment = "", length = 64, type = MySqlTypeConstant.VARCHAR)
59     private String serviceId;
60     /**关联员工用户*/
61     @Column(comment = "", length = 64, type = MySqlTypeConstant.VARCHAR)
62     private String userId;
63
64     /**his标识*/
65     //private String hisId;
66
67 }