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