|
|
@@ -63,6 +63,11 @@
|
|
63
|
63
|
<result property="politicalReviewSituation" column="political_review_situation"/>
|
|
64
|
64
|
<result property="startWorkingDate" column="start_working_date"/>
|
|
65
|
65
|
<result property="securityCheckStartDate" column="security_check_start_date"/>
|
|
|
66
|
+ <result property="entryDate" column="entry_date"/>
|
|
|
67
|
+ <result property="xrayOperatorStarttime" column="xray_operator_starttime"/>
|
|
|
68
|
+ <result property="professional" column="professional"/>
|
|
|
69
|
+ <result property="nativePlace" column="native_place"/>
|
|
|
70
|
+ <result property="nation" column="nation"/>
|
|
66
|
71
|
<result property="securityInspectionPosition" column="security_inspection_position"/>
|
|
67
|
72
|
<result property="workRewardsNumber" column="work_rewards_number"/>
|
|
68
|
73
|
<result property="workPenaltiesNumber" column="work_penalties_number"/>
|
|
|
@@ -144,6 +149,11 @@
|
|
144
|
149
|
u.political_review_situation,
|
|
145
|
150
|
u.start_working_date,
|
|
146
|
151
|
u.security_check_start_date,
|
|
|
152
|
+ u.entry_date,
|
|
|
153
|
+ u.xray_operator_starttime,
|
|
|
154
|
+ u.professional,
|
|
|
155
|
+ u.native_place,
|
|
|
156
|
+ u.nation,
|
|
147
|
157
|
u.security_inspection_position,
|
|
148
|
158
|
u.work_rewards_number,
|
|
149
|
159
|
u.work_penalties_number,
|
|
|
@@ -185,7 +195,9 @@
|
|
185
|
195
|
u.subordinate_evaluation_personality_trait, u.subordinate_evaluation_capability_performance,
|
|
186
|
196
|
u.subordinate_evaluation_interpersonal_interaction,u.subordinate_evaluation_growth_potential,
|
|
187
|
197
|
u.schooling,u.political_review_situation,u.start_working_date,
|
|
188
|
|
- u.security_check_start_date,u.security_inspection_position,u.work_rewards_number,u.work_penalties_number,
|
|
|
198
|
+ u.security_check_start_date,u.entry_date,u.xray_operator_starttime,
|
|
|
199
|
+ u.professional,u.native_place,u.nation,
|
|
|
200
|
+ u.security_inspection_position,u.work_rewards_number,u.work_penalties_number,
|
|
189
|
201
|
d.dept_name, d.leader from sys_user u
|
|
190
|
202
|
left join sys_dept d on u.dept_id = d.dept_id
|
|
191
|
203
|
where u.del_flag = '0'
|
|
|
@@ -530,6 +542,21 @@
|
|
530
|
542
|
<if test="securityCheckStartDate != null">
|
|
531
|
543
|
security_check_start_date,
|
|
532
|
544
|
</if>
|
|
|
545
|
+ <if test="entryDate != null">
|
|
|
546
|
+ entry_date,
|
|
|
547
|
+ </if>
|
|
|
548
|
+ <if test="xrayOperatorStarttime != null">
|
|
|
549
|
+ xray_operator_starttime,
|
|
|
550
|
+ </if>
|
|
|
551
|
+ <if test="professional != null and professional != ''">
|
|
|
552
|
+ professional,
|
|
|
553
|
+ </if>
|
|
|
554
|
+ <if test="nativePlace != null and nativePlace != ''">
|
|
|
555
|
+ native_place,
|
|
|
556
|
+ </if>
|
|
|
557
|
+ <if test="nation != null and nation != ''">
|
|
|
558
|
+ nation,
|
|
|
559
|
+ </if>
|
|
533
|
560
|
<if test="securityInspectionPosition != null and securityInspectionPosition != ''">
|
|
534
|
561
|
security_inspection_position,
|
|
535
|
562
|
</if>
|
|
|
@@ -643,6 +670,21 @@
|
|
643
|
670
|
<if test="securityCheckStartDate != null">
|
|
644
|
671
|
#{securityCheckStartDate},
|
|
645
|
672
|
</if>
|
|
|
673
|
+ <if test="entryDate != null">
|
|
|
674
|
+ #{entryDate},
|
|
|
675
|
+ </if>
|
|
|
676
|
+ <if test="xrayOperatorStarttime != null">
|
|
|
677
|
+ #{xrayOperatorStarttime},
|
|
|
678
|
+ </if>
|
|
|
679
|
+ <if test="professional != null and professional != ''">
|
|
|
680
|
+ #{professional},
|
|
|
681
|
+ </if>
|
|
|
682
|
+ <if test="nativePlace != null and nativePlace != ''">
|
|
|
683
|
+ #{nativePlace},
|
|
|
684
|
+ </if>
|
|
|
685
|
+ <if test="nation != null and nation != ''">
|
|
|
686
|
+ #{nation},
|
|
|
687
|
+ </if>
|
|
646
|
688
|
<if test="securityInspectionPosition != null and securityInspectionPosition != ''">
|
|
647
|
689
|
#{securityInspectionPosition},
|
|
648
|
690
|
</if>
|
|
|
@@ -760,6 +802,21 @@
|
|
760
|
802
|
<if test="securityCheckStartDate != null ">
|
|
761
|
803
|
security_check_start_date = #{securityCheckStartDate},
|
|
762
|
804
|
</if>
|
|
|
805
|
+ <if test="entryDate != null">
|
|
|
806
|
+ entry_date = #{entryDate},
|
|
|
807
|
+ </if>
|
|
|
808
|
+ <if test="xrayOperatorStarttime != null">
|
|
|
809
|
+ xray_operator_starttime = #{xrayOperatorStarttime},
|
|
|
810
|
+ </if>
|
|
|
811
|
+ <if test="professional != null and professional != ''">
|
|
|
812
|
+ professional = #{professional},
|
|
|
813
|
+ </if>
|
|
|
814
|
+ <if test="nativePlace != null and nativePlace != ''">
|
|
|
815
|
+ native_place = #{nativePlace},
|
|
|
816
|
+ </if>
|
|
|
817
|
+ <if test="nation != null and nation != ''">
|
|
|
818
|
+ nation = #{nation},
|
|
|
819
|
+ </if>
|
|
763
|
820
|
<if test="securityInspectionPosition != null and securityInspectionPosition!='' ">
|
|
764
|
821
|
security_inspection_position = #{securityInspectionPosition},
|
|
765
|
822
|
</if>
|