This commit is contained in:
2026-03-19 15:24:39 +08:00
parent 0766026f2c
commit 0925cc100a
2 changed files with 12 additions and 0 deletions
@@ -76,6 +76,8 @@ public class MemberApplyMineController {
info.personType,
info.applyDateTime,
info.sign,
info.nativePlace,
info.jobCategory,
ins.id AS instanceId,
ins.businessNo,
ins.state instanceState,
@@ -247,4 +247,14 @@ public class MemberApplyRecord extends BaseModel {
@Comment("来校时间")
@ColDefine(type = ColType.VARCHAR, width = 10)
private String arrivalAtSchoolDate;
@Column
@Comment("籍贯")
@ColDefine(type = ColType.VARCHAR, width = 50)
private String nativePlace;
@Column
@Comment("岗位名称")
@ColDefine(type = ColType.VARCHAR, width = 50)
private String jobCategory;
}