| package com.doumee.dao.business.model; | 
|   | 
| import com.doumee.core.annotation.excel.ExcelColumn; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import com.baomidou.mybatisplus.annotation.IdType; | 
| import com.baomidou.mybatisplus.annotation.TableId; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import lombok.Data; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import java.util.Date; | 
| import java.math.BigDecimal; | 
|   | 
| /** | 
|  * 会员身份认证信息表 | 
|  * @author 江蹄蹄 | 
|  * @date 2025/07/09 12:00 | 
|  */ | 
| @Data | 
| @ApiModel("会员身份认证信息表") | 
| @TableName("`identity_info`") | 
| public class IdentityInfo { | 
|   | 
|     @ApiModelProperty(value = "主键", example = "1") | 
|     @ExcelColumn(name="主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "是否已删除 0未删除 1已删除", example = "1") | 
|     @ExcelColumn(name="是否已删除 0未删除 1已删除") | 
|     private Byte deleted; | 
|   | 
|     @ApiModelProperty(value = "创建人编码", example = "1") | 
|     @ExcelColumn(name="创建人编码") | 
|     private Integer createUser; | 
|   | 
|     @ApiModelProperty(value = "创建时间") | 
|     @ExcelColumn(name="创建时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date createTime; | 
|   | 
|     @ApiModelProperty(value = "更新人编码", example = "1") | 
|     @ExcelColumn(name="更新人编码") | 
|     private Integer updateUser; | 
|   | 
|     @ApiModelProperty(value = "更新时间") | 
|     @ExcelColumn(name="更新时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date updateTime; | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     @ExcelColumn(name="备注") | 
|     private String remark; | 
|   | 
|     @ApiModelProperty(value = "类型:0=用工身份;1=货运身份;2=供餐身份;", example = "1") | 
|     @ExcelColumn(name="类型:0=用工身份;1=货运身份;2=供餐身份;") | 
|     private Integer type; | 
|   | 
|     @ApiModelProperty(value = "会员逐渐", example = "1") | 
|     @ExcelColumn(name="会员逐渐") | 
|     private Integer memberId; | 
|   | 
|     @ApiModelProperty(value = "认证类型:0=个人;1=企业", example = "1") | 
|     @ExcelColumn(name="认证类型:0=个人;1=企业") | 
|     private Integer authType; | 
|   | 
|     @ApiModelProperty(value = "联系人") | 
|     @ExcelColumn(name="联系人") | 
|     private String linkName; | 
|   | 
|     @ApiModelProperty(value = "联系方式") | 
|     @ExcelColumn(name="联系方式") | 
|     private String telephone; | 
|   | 
|     @ApiModelProperty(value = "接单位置") | 
|     @ExcelColumn(name="接单位置") | 
|     private String location; | 
|   | 
|     @ApiModelProperty(value = "单位名称") | 
|     @ExcelColumn(name="单位名称") | 
|     private String companyName; | 
|   | 
|     @ApiModelProperty(value = "纬度", example = "1") | 
|     @ExcelColumn(name="纬度") | 
|     private BigDecimal lat; | 
|   | 
|     @ApiModelProperty(value = "经度", example = "1") | 
|     @ExcelColumn(name="经度") | 
|     private BigDecimal lgt; | 
|   | 
|     @ApiModelProperty(value = "身份证人像面") | 
|     @ExcelColumn(name="身份证人像面") | 
|     private String identityFront; | 
|   | 
|     @ApiModelProperty(value = "身份证国徽面") | 
|     @ExcelColumn(name="身份证国徽面") | 
|     private String identityBack; | 
|   | 
|     @ApiModelProperty(value = "营业执照(企业类使用)") | 
|     @ExcelColumn(name="营业执照(企业类使用)") | 
|     private String businessLicense; | 
|   | 
|     @ApiModelProperty(value = "其他认证资料(企业类使用)") | 
|     @ExcelColumn(name="其他认证资料(企业类使用)") | 
|     private String otherFile; | 
|   | 
|     @ApiModelProperty(value = "道路运输经验许可证(企业类货运身份使用)") | 
|     @ExcelColumn(name="道路运输经验许可证(企业类货运身份使用)") | 
|     private String transportFile; | 
|   | 
|     @ApiModelProperty(value = "食品经营许可证(企业类供餐身份使用)") | 
|     @ExcelColumn(name="食品经营许可证(企业类供餐身份使用)") | 
|     private String foodBusinessFile; | 
|   | 
|     @ApiModelProperty(value = "从业人员健康证") | 
|     @ExcelColumn(name="从业人员健康证") | 
|     private String healthFile; | 
|   | 
|     @ApiModelProperty(value = "认证审批状态:1=申请中;2=已通过;3=未通过;", example = "1") | 
|     @ExcelColumn(name="认证审批状态:1=申请中;2=已通过;3=未通过;") | 
|     private Integer auditStatus; | 
|   | 
|     @ApiModelProperty(value = "认证审批时间") | 
|     @ExcelColumn(name="认证审批时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date auditTime; | 
|   | 
|     @ApiModelProperty(value = "认证审批备注") | 
|     @ExcelColumn(name="认证审批备注") | 
|     private String auditRemark; | 
|   | 
| } |