对页面敏感信息进行了数据脱敏处理,给学生学籍异动模块增加了政治面貌选项和给八个学院的书记推送企业微信
This commit is contained in:
@@ -20,6 +20,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="parentPhone" column="parent_phone" />
|
||||
<result property="parentName" column="parent_name" />
|
||||
<result property="jg" column="jg" />
|
||||
<result property="politicalStatus" column="political_status" />
|
||||
<result property="hksz2" column="hksz2" />
|
||||
<result property="attachmentUpload" column="attachment_upload" />
|
||||
<result property="reasonApplying" column="reason_applying" />
|
||||
@@ -44,7 +45,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
|
||||
<sql id="selectRtStuDisqualificationVo">
|
||||
select disqualification_id, applicant_name, stu_no, stu_name, stu_id, gender, department_Name, grade_name, class_name, mz,
|
||||
birthday, parent_phone, parent_name, jg, hksz2, attachment_upload, reason_applying, apply_signature, apply_status, submission_status,
|
||||
birthday, parent_phone, parent_name, jg,political_status,hksz2, attachment_upload, reason_applying, apply_signature, apply_status, submission_status,
|
||||
drop_out_type, process_instance_id, deploy_id, create_by, create_time, update_by, update_time, remark, ideological_education,
|
||||
instruction_school_hours, ihandling_suggestion, reentry_year, reentry_number, disqualificatio_type ,applicant_id from rt_stu_disqualification
|
||||
</sql>
|
||||
@@ -65,6 +66,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="parentPhone != null and parentPhone != ''"> and parent_phone = #{parentPhone}</if>
|
||||
<if test="parentName != null and parentName != ''"> and parent_name like concat('%', #{parentName}, '%')</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="attachmentUpload != null and attachmentUpload != ''"> and attachment_upload = #{attachmentUpload}</if>
|
||||
<if test="reasonApplying != null and reasonApplying != ''"> and reason_applying = #{reasonApplying}</if>
|
||||
@@ -106,6 +108,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
a.parent_phone,
|
||||
a.parent_name,
|
||||
a.jg,
|
||||
a.political_status,
|
||||
a.hksz2,
|
||||
a.attachment_upload,
|
||||
a.reason_applying,
|
||||
@@ -162,6 +165,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="parentPhone != null">parent_phone,</if>
|
||||
<if test="parentName != null">parent_name,</if>
|
||||
<if test="jg != null">jg,</if>
|
||||
<if test="politicalStatus != null">political_status,</if>
|
||||
<if test="hksz2 != null">hksz2,</if>
|
||||
<if test="attachmentUpload != null">attachment_upload,</if>
|
||||
<if test="reasonApplying != null">reason_applying,</if>
|
||||
@@ -198,6 +202,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="parentPhone != null">#{parentPhone},</if>
|
||||
<if test="parentName != null">#{parentName},</if>
|
||||
<if test="jg != null">#{jg},</if>
|
||||
<if test="politicalStatus != null">#{politicalStatus},</if>
|
||||
<if test="hksz2 != null">#{hksz2},</if>
|
||||
<if test="attachmentUpload != null">#{attachmentUpload},</if>
|
||||
<if test="reasonApplying != null">#{reasonApplying},</if>
|
||||
@@ -238,6 +243,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="parentPhone != null">parent_phone = #{parentPhone},</if>
|
||||
<if test="parentName != null">parent_name = #{parentName},</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="attachmentUpload != null">attachment_upload = #{attachmentUpload},</if>
|
||||
<if test="reasonApplying != null">reason_applying = #{reasonApplying},</if>
|
||||
|
||||
Reference in New Issue
Block a user