修改数据教育经验的时间字段
This commit is contained in:
+4
-4
@@ -27,11 +27,11 @@ public class UserProfileEducationDto {
|
|||||||
/** 学习形式 0=全日制 1=非全日制 */
|
/** 学习形式 0=全日制 1=非全日制 */
|
||||||
private Integer studyType;
|
private Integer studyType;
|
||||||
|
|
||||||
/** 入学年份 */
|
/** 开始时间,格式:2023.09 */
|
||||||
private Integer startYear;
|
private String startDate;
|
||||||
|
|
||||||
/** 毕业年份 */
|
/** 结束时间,格式:2024.06 */
|
||||||
private Integer endYear;
|
private String endDate;
|
||||||
|
|
||||||
/** 描述段落 */
|
/** 描述段落 */
|
||||||
private List<DescriptionParagraph> description;
|
private List<DescriptionParagraph> description;
|
||||||
|
|||||||
+4
-4
@@ -29,11 +29,11 @@ public class UserProfileEducationParam {
|
|||||||
/** 学习形式 0=全日制 1=非全日制 */
|
/** 学习形式 0=全日制 1=非全日制 */
|
||||||
private Integer studyType;
|
private Integer studyType;
|
||||||
|
|
||||||
/** 入学年份 */
|
/** 开始时间,格式:2023.09 */
|
||||||
private Integer startYear;
|
private String startDate;
|
||||||
|
|
||||||
/** 毕业年份 */
|
/** 结束时间,格式:2024.06 */
|
||||||
private Integer endYear;
|
private String endDate;
|
||||||
|
|
||||||
/** 描述段落 */
|
/** 描述段落 */
|
||||||
private List<DescriptionParagraph> description;
|
private List<DescriptionParagraph> description;
|
||||||
|
|||||||
@@ -41,11 +41,11 @@ public class UserProfileEducation {
|
|||||||
/** 学习形式 0=全日制 1=非全日制 */
|
/** 学习形式 0=全日制 1=非全日制 */
|
||||||
private Integer studyType;
|
private Integer studyType;
|
||||||
|
|
||||||
/** 入学年份 */
|
/** 开始时间,格式:2023.09 */
|
||||||
private Integer startYear;
|
private String startDate;
|
||||||
|
|
||||||
/** 毕业年份 */
|
/** 结束时间,格式:2024.06 */
|
||||||
private Integer endYear;
|
private String endDate;
|
||||||
|
|
||||||
/** 描述段落,id为前端生成的短标识,用于简历优化时精确定位段落 */
|
/** 描述段落,id为前端生成的短标识,用于简历优化时精确定位段落 */
|
||||||
@TableField(typeHandler = JacksonTypeHandler.class)
|
@TableField(typeHandler = JacksonTypeHandler.class)
|
||||||
|
|||||||
Reference in New Issue
Block a user