123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- package com.fdkankan.manage.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- * 代理商申请表
- * </p>
- *
- * @author
- * @since 2022-09-21
- */
- @Getter
- @Setter
- @TableName("t_agent_audit")
- public class AgentAudit implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 经销商公司名称
- */
- @TableField("name")
- private String name;
- /**
- * 国家
- */
- @TableField("country")
- private String country;
- /**
- * 地区
- */
- @TableField("region")
- private String region;
- /**
- * 地址
- */
- @TableField("address")
- private String address;
- /**
- * 类型,1为线下,2为线上
- */
- @TableField("type")
- private Integer type;
- /**
- * 线下门店地址或线上网站
- */
- @TableField("store_address")
- private String storeAddress;
- /**
- * 申请人的姓
- */
- @TableField("sur_name")
- private String surName;
- /**
- * 申请人的名字
- */
- @TableField("user_name")
- private String userName;
- /**
- * 申请人职位
- */
- @TableField("post")
- private String post;
- /**
- * 区号
- */
- @TableField("area_code")
- private String areaCode;
- /**
- * 手机号
- */
- @TableField("phone")
- private String phone;
- /**
- * 邮箱地址
- */
- @TableField("email")
- private String email;
- /**
- * 状态,0申请中,1审核通过,2审核失败
- */
- @TableField("state")
- private Integer state;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private String createTime;
- /**
- * 更新时间
- */
- @TableField("update_time")
- private String updateTime;
- /**
- * 记录的状态,A: 生效,I: 禁用
- */
- @TableField("rec_status")
- @TableLogic(value = "A",delval = "I")
- private String recStatus;
- /**
- * 备注等级
- */
- @TableField("note_type")
- private Integer noteType;
- /**
- * 备注内容
- */
- @TableField("note_content")
- private String noteContent;
- }
|