|
@@ -0,0 +1,160 @@
|
|
|
+package com.miaxis.aent.domain;
|
|
|
+
|
|
|
+import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
+import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
+import com.miaxis.common.annotation.Excel;
|
|
|
+import com.miaxis.common.core.domain.BaseEntity;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.miaxis.common.core.domain.BaseBusinessEntity;
|
|
|
+import lombok.Data;
|
|
|
+/**
|
|
|
+ * 招商对象 aent_info
|
|
|
+ *
|
|
|
+ * @author miaxis
|
|
|
+ * @date 2023-10-26
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("aent_info")
|
|
|
+@ApiModel(value = "AentInfo", description = "招商对象 aent_info")
|
|
|
+public class AentInfo extends BaseBusinessEntity{
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /** 主键 */
|
|
|
+ @TableId(value = "id")
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /** 姓名 */
|
|
|
+ @Excel(name = "姓名")
|
|
|
+ @TableField("name")
|
|
|
+ @ApiModelProperty(value = "姓名")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ /** 性别 1男 2女 */
|
|
|
+ @Excel(name = "性别 1男 2女")
|
|
|
+ @TableField("sex")
|
|
|
+ @ApiModelProperty(value = "性别 1男 2女")
|
|
|
+ private Long sex;
|
|
|
+
|
|
|
+ /** 职业 1:教练 2:驾校 3:自媒体 4:相关从业者 */
|
|
|
+ @Excel(name = "职业 1:教练 2:驾校 3:自媒体 4:相关从业者")
|
|
|
+ @TableField("career")
|
|
|
+ @ApiModelProperty(value = "职业 1:教练 2:驾校 3:自媒体 4:相关从业者")
|
|
|
+ private Long career;
|
|
|
+
|
|
|
+ /** 证件的文件ID */
|
|
|
+ @Excel(name = "证件的文件ID")
|
|
|
+ @TableField("document")
|
|
|
+ @ApiModelProperty(value = "证件的文件ID")
|
|
|
+ private Long document;
|
|
|
+
|
|
|
+ /** 手机号 */
|
|
|
+ @Excel(name = "手机号")
|
|
|
+ @TableField("phone")
|
|
|
+ @ApiModelProperty(value = "手机号")
|
|
|
+ private String phone;
|
|
|
+
|
|
|
+ /** 微信号 */
|
|
|
+ @Excel(name = "微信号")
|
|
|
+ @TableField("wechar")
|
|
|
+ @ApiModelProperty(value = "微信号")
|
|
|
+ private String wechar;
|
|
|
+
|
|
|
+ /** 1:软件代理 2:书籍代理 3:软件+书籍 */
|
|
|
+ @Excel(name = "1:软件代理 2:书籍代理 3:软件+书籍")
|
|
|
+ @TableField("project")
|
|
|
+ @ApiModelProperty(value = "1:软件代理 2:书籍代理 3:软件+书籍")
|
|
|
+ private Long project;
|
|
|
+
|
|
|
+ /** 加盟原因 */
|
|
|
+ @Excel(name = "加盟原因")
|
|
|
+ @TableField("reason")
|
|
|
+ @ApiModelProperty(value = "加盟原因")
|
|
|
+ private String reason;
|
|
|
+
|
|
|
+ public void setId(Long id){
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getId(){
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+ public void setName(String name){
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName(){
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+ public void setSex(Long sex){
|
|
|
+ this.sex = sex;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getSex(){
|
|
|
+ return sex;
|
|
|
+ }
|
|
|
+ public void setCareer(Long career){
|
|
|
+ this.career = career;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getCareer(){
|
|
|
+ return career;
|
|
|
+ }
|
|
|
+ public void setDocument(Long document){
|
|
|
+ this.document = document;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getDocument(){
|
|
|
+ return document;
|
|
|
+ }
|
|
|
+ public void setPhone(String phone){
|
|
|
+ this.phone = phone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPhone(){
|
|
|
+ return phone;
|
|
|
+ }
|
|
|
+ public void setWechar(String wechar){
|
|
|
+ this.wechar = wechar;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWechar(){
|
|
|
+ return wechar;
|
|
|
+ }
|
|
|
+ public void setProject(Long project){
|
|
|
+ this.project = project;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getProject(){
|
|
|
+ return project;
|
|
|
+ }
|
|
|
+ public void setReason(String reason){
|
|
|
+ this.reason = reason;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getReason(){
|
|
|
+ return reason;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
+ .append("id", getId())
|
|
|
+ .append("name", getName())
|
|
|
+ .append("sex", getSex())
|
|
|
+ .append("career", getCareer())
|
|
|
+ .append("document", getDocument())
|
|
|
+ .append("phone", getPhone())
|
|
|
+ .append("wechar", getWechar())
|
|
|
+ .append("project", getProject())
|
|
|
+ .append("reason", getReason())
|
|
|
+ .append("createTime", getCreateTime())
|
|
|
+ .append("updateTime", getUpdateTime())
|
|
|
+ .toString();
|
|
|
+ }
|
|
|
+}
|