Commit 59e3dc55 by 彭祥礼

...

parent c99f1b00
package com.winsun.bean;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* @Description 大王卡证件稽核
* @Author pxl
* @Date 2020-05-20
*/
@Data
@TableName ( "yx_student_cert_upload" )
public class StudentCertUpload implements Serializable {
private static final long serialVersionUID = 4964608982013796074L;
@TableField("id" )
private Integer id;
/**
* 用户姓名
*/
@TableField("user_name" )
private String userName;
/**
* 订单号码
*/
@TableField("order_phone" )
private String orderPhone;
/**
* 联系号码
*/
@TableField("link_phone" )
private String linkPhone;
/**
* 学生证照片
*/
@TableField("student_card_url" )
private String studentCardUrl;
/**
* 身份证照片
*/
@TableField("school_card_url" )
private String schoolCardUrl;
/**
* 录取通知书照片
*/
@TableField("notice_url" )
private String noticeUrl;
/**
* 其它图片
*/
@TableField("other_url" )
private String otherUrl;
/**
* 上传时间
*/
@TableField("upload_date" )
private Date uploadDate;
/**
* 1:未审核 2:审核通过 3:审核不通过
*/
@TableField("audit_state" )
private Integer auditState;
/**
* 0:未删除 1:已删除
*/
@TableField("del_falg" )
private Integer delFalg;
/**
* 审核时间
*/
@TableField("audit_date" )
private Date auditDate;
/**
* 审核人
*/
@TableField("audit_name" )
private String auditName;
/**
* 是否已上传学生证照片、学校等必填信息
*/
@TableField("is_full" )
private Integer isFull;
/**
* 学生年龄是否25岁及以下
*/
@TableField("is_under_years" )
private Integer isUnderYears;
/**
* 号码被实名人员与上传学生证用户是否一致
*/
@TableField("is_student_accordance" )
private Integer isStudentAccordance;
/**
* 资料上传时间是否早于CRM系统激活时间
*/
@TableField("is_upload_before_activate" )
private Integer isUploadBeforeActivate;
/**
* crm激活时间
*/
@TableField("crn_activate_date" )
private Date crnActivateDate;
/**
* 是否首次上传
*/
@TableField("is_first_upload" )
private Integer isFirstUpload;
/**
* 资料首次上传时间
*/
@TableField("first_upload_date" )
private Date firstUploadDate;
/**
* 学生证所属学校与号码所属学校是否一致
*/
@TableField("is_school_accordance" )
private Integer isSchoolAccordance;
/**
* 学生证照片是否清晰
*/
@TableField("is_clear" )
private Integer isClear;
/**
* 代理商
*/
@TableField("agent_businessman" )
private String agentBusinessman;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment