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
3deb5d69
Commit
3deb5d69
authored
Aug 31, 2021
by
吕伟康
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
反诈bean类
parent
c1053df9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
102 additions
and
0 deletions
+102
-0
common/src/main/java/com/winsun/bean/AntiFraudNotice.java
+102
-0
No files found.
common/src/main/java/com/winsun/bean/AntiFraudNotice.java
0 → 100644
View file @
3deb5d69
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
;
}
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