|
|
@@ -158,10 +158,17 @@ public class SysUser extends BaseEntity {
|
|
158
|
158
|
"CHINA_ZHI_GONG_PARTY=中国致公党," +
|
|
159
|
159
|
"JIU_SAN_SOCIETY=九三学社," +
|
|
160
|
160
|
"TAIWAN_DEMOCRATIC_SELF_GOVERNMENT_LEAGUE=台湾民主自治同盟",
|
|
161
|
|
- combo = "中共党员,中共预备党员,共青团员,群众,中国国民党革命委员会,中国民主同盟,中国民主建国会,中国民主促进会,中国农工民主党,中国致公党,九三学社,台湾民主自治同盟")
|
|
|
161
|
+ combo = "中共党员,中共预备党员,共青团员,群众,中国国民党革命委员会,中国民主同盟,中国民主建国会,中国民主促进会,中国农工民主党,中国致公党,九三学社,台湾民主自治同盟",
|
|
|
162
|
+ type = Type.EXPORT)
|
|
162
|
163
|
private String politicalStatus;
|
|
163
|
164
|
|
|
164
|
165
|
/**
|
|
|
166
|
+ * 政治面貌描述
|
|
|
167
|
+ */
|
|
|
168
|
+ @Excel(name = "政治面貌", type = Type.IMPORT)
|
|
|
169
|
+ private String politicalStatusDesc;
|
|
|
170
|
+
|
|
|
171
|
+ /**
|
|
165
|
172
|
* 培训合规状态
|
|
166
|
173
|
*/
|
|
167
|
174
|
@Excel(name = "培训合规状态", readConverterExp = "0=合规,1=不合规", combo = "合规,不合规")
|
|
|
@@ -754,6 +761,14 @@ public class SysUser extends BaseEntity {
|
|
754
|
761
|
this.politicalStatus = politicalStatus;
|
|
755
|
762
|
}
|
|
756
|
763
|
|
|
|
764
|
+ public String getPoliticalStatusDesc() {
|
|
|
765
|
+ return politicalStatusDesc;
|
|
|
766
|
+ }
|
|
|
767
|
+
|
|
|
768
|
+ public void setPoliticalStatusDesc(String politicalStatusDesc) {
|
|
|
769
|
+ this.politicalStatusDesc = politicalStatusDesc;
|
|
|
770
|
+ }
|
|
|
771
|
+
|
|
757
|
772
|
public String getTrainingComplianceStatus() {
|
|
758
|
773
|
return trainingComplianceStatus;
|
|
759
|
774
|
}
|
|
|
@@ -1187,6 +1202,7 @@ public class SysUser extends BaseEntity {
|
|
1187
|
1202
|
.append("dept", getDept())
|
|
1188
|
1203
|
.append("cardNumber", getCardNumber())
|
|
1189
|
1204
|
.append("politicalStatus", getPoliticalStatus())
|
|
|
1205
|
+ .append("politicalStatusDesc", getPoliticalStatusDesc())
|
|
1190
|
1206
|
.append("trainingComplianceStatus", getTrainingComplianceStatus())
|
|
1191
|
1207
|
.append("qualificationLevel", getQualificationLevel())
|
|
1192
|
1208
|
.append("administrativeStatus", getAdministrativeStatus())
|