修改学生证完成制作发送的文案,给处分记录和解除处分添加政治面貌选项
This commit is contained in:
@@ -34,6 +34,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<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="dispositionService" column="disposition_service" />
|
||||
<result property="letterService" column="letter_service" />
|
||||
@@ -44,7 +45,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
select application_id, applicant_id, applicant_name, penalty_number, stu_no, stu_name, stu_id, penalty_type,
|
||||
penalty_status, violation_date, expiration_date, evidence_upload, penalty_recommendation, violation_regulations,
|
||||
submission_status, process_instance_id, deploy_id, create_by, create_time, update_by, update_time, remark, gender,
|
||||
department_Name, grade_name, class_name, mz, birthday, jg, hksz2,disposition_service,letter_service,disciplinary_date from rt_stu_disciplinary_application
|
||||
department_Name, grade_name, class_name, mz, birthday, jg,political_status,hksz2,disposition_service,letter_service,disciplinary_date from rt_stu_disciplinary_application
|
||||
</sql>
|
||||
|
||||
<select id="selectRtStuDisciplinaryApplicationList" parameterType="RtStuDisciplinaryApplication" resultMap="RtStuDisciplinaryApplicationResult">
|
||||
@@ -73,6 +74,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<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>
|
||||
</where>
|
||||
ORDER BY create_time desc
|
||||
@@ -116,7 +118,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
select application_id, applicant_id, applicant_name, penalty_number, stu_no, stu_name, stu_id, penalty_type,penalty_status,
|
||||
violation_date, expiration_date, evidence_upload, penalty_recommendation, violation_regulations,submission_status,
|
||||
process_instance_id, deploy_id, a.create_by, a.create_time, a.update_by, a.update_time, a.remark, a.gender,a.department_Name,
|
||||
a.grade_name, a.class_name, a.mz, a.birthday, a.jg, a.hksz2,a.disposition_service,a.letter_service,a.disciplinary_date from rt_stu_disciplinary_application a
|
||||
a.grade_name, a.class_name, a.mz, a.birthday, a.jg,a.political_status,a.hksz2,a.disposition_service,a.letter_service,a.disciplinary_date from rt_stu_disciplinary_application a
|
||||
LEFT JOIN sys_user b ON a.applicant_id = b.user_id
|
||||
LEFT JOIN cph_teacher c ON b.user_name = c.employee_id
|
||||
<where>
|
||||
@@ -175,6 +177,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<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="dispositionService != null">disposition_service,</if>
|
||||
<if test="letterService != null">letter_service,</if>
|
||||
@@ -208,6 +211,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<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="dispositionService != null">#{dispositionService},</if>
|
||||
<if test="letterService != null">#{letterService},</if>
|
||||
@@ -245,6 +249,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<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="dispositionService != null">disposition_service = #{dispositionService},</if>
|
||||
<if test="letterService != null">letter_service = #{letterService},</if>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user