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; }