游客提交数据

This commit is contained in:
遥望-倪浩天 2024-07-12 17:44:06 +08:00
parent 74ae7dad49
commit 0e9e4a721e
1 changed files with 15 additions and 4 deletions

View File

@ -316,13 +316,11 @@ public class EntityDataAll implements Serializable {
/** /**
* 用户邮件 * 用户邮件
*/ */
@TableField(exist = false)
private String email; private String email;
/** /**
* 用户组织机构 * 用户组织机构
*/ */
@TableField(exist = false)
private String organization; private String organization;
/** /**
@ -334,7 +332,6 @@ public class EntityDataAll implements Serializable {
/** /**
* 职业 * 职业
*/ */
@TableField(exist = false)
private String occupation; private String occupation;
/** /**
@ -358,9 +355,23 @@ public class EntityDataAll implements Serializable {
/** /**
* 国家 * 国家
*/ */
@TableField(exist = false)
private String country; private String country;
/**
* 真实姓名
*/
private String realname;
/**
* 学位
*/
private String education;
/**
* 自我介绍
*/
private String introduction;
@TableField(exist = false) @TableField(exist = false)
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;