|
|
@@ -0,0 +1,19 @@
|
|
|
+package com.sqx.modules.firstLogin.dto;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class WorkExpDetailDto {
|
|
|
+ private Integer workExpId;
|
|
|
+ private Integer workExpDetailId;
|
|
|
+ private String skills; // 技能数组
|
|
|
+ private String position; // 职位名称
|
|
|
+ private Integer positionId; // 职位ID(若数值较大,可改为Long)
|
|
|
+ private String workContent; // 工作内容
|
|
|
+ private Integer departmentId; // 部门ID(若数值较大,可改为Long)
|
|
|
+ private String positionLevel; // 职位级别(初级/中级/高级等)
|
|
|
+ private String startTime; // 任职时间数组(格式:yyyy-MM-dd)
|
|
|
+ private String endTime;
|
|
|
+ private String department; // 部门索引
|
|
|
+ private String workPerformance;
|
|
|
+}
|