Commit 3deb5d69 by 吕伟康

反诈bean类

parent c1053df9
package com.winsun.bean;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* 反诈通告
*/
@Data
@TableName("hhr_student_anti_fraud")
public class AntiFraudNotice implements Serializable {
private static final long serialVersionUID = 7092966613897262590L;
@TableId(value = "id",type = IdType.AUTO)
private Integer id;
/**
* 用户姓名
*/
@TableField("user_name" )
private String userName;
/**
* 订单号码
*/
@TableField("order_phone" )
private String orderPhone;
/**
* 联系号码
*/
@TableField("link_phone" )
private String linkPhone;
/**
* 审核人姓名
*/
@TableField("audit_name" )
private String auditName;
/**
* 县分
*/
@TableField("county" )
private String county;
/**
* 学校
*/
@TableField("school" )
private String school;
/**
* 反诈签字照片
*/
@TableField("other_img_url1" )
private String otherImgUrl1;
/**
* 上传时间
*/
@TableField("upload_date" )
private Date uploadDate;
/**
* 审核状态 1:未审核 2:审核通过 3:审核不通过
*/
@TableField("audit_state" )
private Integer auditState;
/**
* 审核人
*/
@TableField("operator" )
private String operator;
/**
* 审核时间
*/
@TableField("audit_date" )
private Date auditDate;
/**
* 是否首次上传
*/
@TableField("is_first_upload" )
private Integer isFirstUpload;
/**
* 资料首次上传时间
*/
@TableField("first_upload_date" )
private Date firstUploadDate;
}
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