|
|
@@ -51,6 +51,7 @@ public class EmployeePortraitVO {
|
|
51
|
51
|
private Integer xrayOperatorYears; // 开机年限(新增字段)
|
|
52
|
52
|
private Integer companyYears; // 司龄(新增字段)
|
|
53
|
53
|
private String securityInspectionPosition;
|
|
|
54
|
+ private String userTags; //用户标签
|
|
54
|
55
|
|
|
55
|
56
|
// ── 综合得分 ──────────────────────────────────────────────────────────────
|
|
56
|
57
|
|
|
|
@@ -87,6 +88,9 @@ public class EmployeePortraitVO {
|
|
87
|
88
|
|
|
88
|
89
|
// ── getter / setter ───────────────────────────────────────────────────────
|
|
89
|
90
|
|
|
|
91
|
+ public String getUserTags() { return userTags; }
|
|
|
92
|
+ public void setUserTags(String userTags) { this.userTags = userTags; }
|
|
|
93
|
+
|
|
90
|
94
|
public Long getUserId() { return userId; }
|
|
91
|
95
|
public void setUserId(Long userId) { this.userId = userId; }
|
|
92
|
96
|
|