Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gdtel-gztel-school-center
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴学德
gdtel-gztel-school-center
Commits
59e3dc55
Commit
59e3dc55
authored
May 22, 2020
by
彭祥礼
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
...
parent
c99f1b00
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
157 additions
and
0 deletions
+157
-0
common/src/main/java/com/winsun/bean/StudentCertUpload.java
+157
-0
No files found.
common/src/main/java/com/winsun/bean/StudentCertUpload.java
0 → 100644
View file @
59e3dc55
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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment