| | |
| | | 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; |
| | | public String getId() { |
| | | return id; |
| | | } |
| | | |
| | | /**渠道联系人名称*/ |
| | | 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; |
| | | public void setId(String id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | /**归属部门标识(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; |
| | | public String getName() { |
| | | return name; |
| | | } |
| | | |
| | | /**his标识*/ |
| | | //private String hisId; |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | } |