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; /** *

* 代理商申请表 *

* * @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; }