AgentAudit.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. package com.fdkankan.manage.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableLogic;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. import lombok.Getter;
  10. import lombok.Setter;
  11. /**
  12. * <p>
  13. * 代理商申请表
  14. * </p>
  15. *
  16. * @author
  17. * @since 2022-09-21
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_agent_audit")
  22. public class AgentAudit implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Long id;
  26. /**
  27. * 经销商公司名称
  28. */
  29. @TableField("name")
  30. private String name;
  31. /**
  32. * 国家
  33. */
  34. @TableField("country")
  35. private String country;
  36. /**
  37. * 地区
  38. */
  39. @TableField("region")
  40. private String region;
  41. /**
  42. * 地址
  43. */
  44. @TableField("address")
  45. private String address;
  46. /**
  47. * 类型,1为线下,2为线上
  48. */
  49. @TableField("type")
  50. private Integer type;
  51. /**
  52. * 线下门店地址或线上网站
  53. */
  54. @TableField("store_address")
  55. private String storeAddress;
  56. /**
  57. * 申请人的姓
  58. */
  59. @TableField("sur_name")
  60. private String surName;
  61. /**
  62. * 申请人的名字
  63. */
  64. @TableField("user_name")
  65. private String userName;
  66. /**
  67. * 申请人职位
  68. */
  69. @TableField("post")
  70. private String post;
  71. /**
  72. * 区号
  73. */
  74. @TableField("area_code")
  75. private String areaCode;
  76. /**
  77. * 手机号
  78. */
  79. @TableField("phone")
  80. private String phone;
  81. /**
  82. * 邮箱地址
  83. */
  84. @TableField("email")
  85. private String email;
  86. /**
  87. * 状态,0申请中,1审核通过,2审核失败
  88. */
  89. @TableField("state")
  90. private Integer state;
  91. /**
  92. * 创建时间
  93. */
  94. @TableField("create_time")
  95. private String createTime;
  96. /**
  97. * 更新时间
  98. */
  99. @TableField("update_time")
  100. private String updateTime;
  101. /**
  102. * 记录的状态,A: 生效,I: 禁用
  103. */
  104. @TableField("rec_status")
  105. @TableLogic(value = "A",delval = "I")
  106. private String recStatus;
  107. /**
  108. * 备注等级
  109. */
  110. @TableField("note_type")
  111. private Integer noteType;
  112. /**
  113. * 备注内容
  114. */
  115. @TableField("note_content")
  116. private String noteContent;
  117. }