package com.goafanti.user.bo; import java.util.Date; import com.goafanti.common.utils.excel.Excel; public class OutUserChannel { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user_channel.id * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ private Integer id; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user_channel.uid * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ private String uid; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user_channel.aid * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ private String aid; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user_channel.status * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user_channel.distribution_time * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ private Date distributionTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user_channel.create_time * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ private Date createTime; private String channelName; private String adminName; @Excel(name = "客户名称") private String userName; @Excel(name = "省") private String province; @Excel(name = "市") private String city; @Excel(name = "社会性质",readConverterExp = "0=社会企业,1=科研单位,2=高等院校,3=科研专家,4=科技达人,5=服务机构,6=政府部门,7=商会,8=协会,9=其他组织,10=其他个人") private String societyTag; public String getSocietyTag() { return societyTag; } public void setSocietyTag(String societyTag) { this.societyTag = societyTag; } private String distributionTimes; @Excel(name = "联系人") private String contacts; @Excel(name = "联系人电话") private String contactMobile; @Excel(name = "导入时间") private String createTimes; @Excel(name = "备注") private String remarks; private Integer guidance; private Integer recovery; @Excel(name = "未导入原因",readConverterExp = " 3=已存在私有,4=已存在公共,5=已存在签单") private Integer status; public String getRemarks() { return remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user_channel.id * * @return the value of user_channel.id * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ public Integer getId() { return id; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user_channel.id * * @param id the value for user_channel.id * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ public void setId(Integer id) { this.id = id; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user_channel.uid * * @return the value of user_channel.uid * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ public String getUid() { return uid; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user_channel.uid * * @param uid the value for user_channel.uid * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ public void setUid(String uid) { this.uid = uid == null ? null : uid.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user_channel.aid * * @return the value of user_channel.aid * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ public String getAid() { return aid; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user_channel.aid * * @param aid the value for user_channel.aid * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ public void setAid(String aid) { this.aid = aid == null ? null : aid.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user_channel.status * * @return the value of user_channel.status * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ public Integer getStatus() { return status; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user_channel.status * * @param status the value for user_channel.status * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ public void setStatus(Integer status) { this.status = status; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user_channel.distribution_time * * @return the value of user_channel.distribution_time * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ public Date getDistributionTime() { return distributionTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user_channel.distribution_time * * @param distributionTime the value for user_channel.distribution_time * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ public void setDistributionTime(Date distributionTime) { this.distributionTime = distributionTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user_channel.create_time * * @return the value of user_channel.create_time * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ public Date getCreateTime() { return createTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user_channel.create_time * * @param createTime the value for user_channel.create_time * * @mbg.generated Thu Apr 22 09:06:45 CST 2021 */ public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getCreateTimes() { return createTimes; } public void setCreateTimes(String createTimes) { this.createTimes = createTimes; } public String getDistributionTimes() { return distributionTimes; } public void setDistributionTimes(String distributionTimes) { this.distributionTimes = distributionTimes; } public String getProvince() { return province; } public void setProvince(String province) { this.province = province; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getContacts() { return contacts; } public void setContacts(String contacts) { this.contacts = contacts; } public String getContactMobile() { return contactMobile; } public void setContactMobile(String contactMobile) { this.contactMobile = contactMobile; } public String getChannelName() { return channelName; } public void setChannelName(String channelName) { this.channelName = channelName; } public String getAdminName() { return adminName; } public void setAdminName(String adminName) { this.adminName = adminName; } public Integer getGuidance() { return guidance; } public void setGuidance(Integer guidance) { this.guidance = guidance; } public Integer getRecovery() { return recovery; } public void setRecovery(Integer recovery) { this.recovery = recovery; } }