修改学生证完成制作发送的文案,给处分记录和解除处分添加政治面貌选项

This commit is contained in:
MDSMO
2025-08-20 17:05:35 +08:00
parent 3c5818dee2
commit 89176c8f32
6 changed files with 81 additions and 3 deletions

View File

@@ -33,6 +33,7 @@
<result property="mz" column="mz"/>
<result property="birthday" column="birthday"/>
<result property="jg" column="jg"/>
<result property="politicalStatus" column="political_status" />
<result property="hksz2" column="hksz2"/>
<result property="relieveService" column="relieve_service"/>
</resultMap>
@@ -65,6 +66,7 @@
mz,
birthday,
jg,
political_status,
hksz2,
relieve_service,
applicant_name
@@ -107,6 +109,7 @@
<if test="mz != null and mz != ''">and mz = #{mz}</if>
<if test="birthday != null and birthday != ''">and birthday = #{birthday}</if>
<if test="jg != null and jg != ''">and jg = #{jg}</if>
<if test="politicalStatus != null and politicalStatus != ''">and political_status = #{politicalStatus}</if>
<if test="hksz2 != null and hksz2 != ''">and hksz2 = #{hksz2}</if>
<if test="relieveService != null and relieveService != ''">and relieve_service = #{relieveService}</if>
</where>
@@ -147,6 +150,7 @@
a.mz,
a.birthday,
a.jg,
a.political_status,
a.hksz2,
a.relieve_service,
a.applicant_name
@@ -187,6 +191,7 @@
<if test="mz != null and mz != ''">and a.mz = #{mz}</if>
<if test="birthday != null and birthday != ''">and a.birthday = #{birthday}</if>
<if test="jg != null and jg != ''">and a.jg = #{jg}</if>
<if test="politicalStatus != null and politicalStatus != ''">and a.political_status = #{politicalStatus}</if>
<if test="hksz2 != null and hksz2 != ''">and a.hksz2 = #{hksz2}</if>
<if test="relieveService != null and relieveService != ''">and a.relieve_service = #{relieveService}</if>
<if test="params.employeeId != null and params.employeeId != ''">and d.employee_id = #{params.employeeId}</if>
@@ -222,6 +227,7 @@
a.mz,
a.birthday,
a.jg,
a.political_status,
a.hksz2,
a.relieve_service,
a.applicant_name
@@ -262,6 +268,7 @@
<if test="mz != null and mz != ''">and a.mz = #{mz}</if>
<if test="birthday != null and birthday != ''">and a.birthday = #{birthday}</if>
<if test="jg != null and jg != ''">and a.jg = #{jg}</if>
<if test="politicalStatus != null and politicalStatus != ''">and a.political_status = #{politicalStatus}</if>
<if test="hksz2 != null and hksz2 != ''">and a.hksz2 = #{hksz2}</if>
<if test="relieveService != null and relieveService != ''">and a.relieve_service = #{relieveService}</if>
<if test="params.employeeId != null and params.employeeId != ''">and d.employee_id = #{params.employeeId}</if>
@@ -300,6 +307,7 @@
<if test="mz != null">mz,</if>
<if test="birthday != null">birthday,</if>
<if test="jg != null">jg,</if>
<if test="politicalStatus != null">political_status,</if>
<if test="hksz2 != null">hksz2,</if>
<if test="relieveService != null">relieve_service,</if>
<if test="applicantName != null">applicant_name,</if>
@@ -331,6 +339,7 @@
<if test="mz != null">#{mz},</if>
<if test="birthday != null">#{birthday},</if>
<if test="jg != null">#{jg},</if>
<if test="politicalStatus != null">#{politicalStatus},</if>
<if test="hksz2 != null">#{hksz2},</if>
<if test="relieveService != null">#{relieveService},</if>
<if test="applicantName != null">#{applicantName},</if>
@@ -366,6 +375,7 @@
<if test="mz != null">mz = #{mz},</if>
<if test="birthday != null">birthday = #{birthday},</if>
<if test="jg != null">jg = #{jg},</if>
<if test="politicalStatus != null">political_status = #{politicalStatus},</if>
<if test="hksz2 != null">hksz2 = #{hksz2},</if>
<if test="relieveService != null">relieve_service = #{relieveService},</if>
<if test="applicantName != null">applicant_name = #{applicantName},</if>