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