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