|
|
|
|
@ -19,6 +19,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="reform" column="reform" />
|
|
|
|
|
<result property="zgProgress" column="zg_progress" />
|
|
|
|
|
<result property="xcStatus" column="xc_status" />
|
|
|
|
|
<result property="auditDept" column="audit_dept" />
|
|
|
|
|
<result property="auditDeptid" column="audit_deptid" />
|
|
|
|
|
<result property="auditName" column="audit_name" />
|
|
|
|
|
<result property="auditResult" column="audit_result" />
|
|
|
|
|
<result property="auditReason" column="audit_reason" />
|
|
|
|
|
<result property="shRemark" column="sh_remark" />
|
|
|
|
|
<result property="createBy" column="create_by" />
|
|
|
|
|
<result property="createTime" column="create_time" />
|
|
|
|
|
@ -30,7 +35,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectSzxcXcRecardVo">
|
|
|
|
|
select id, xc_name, submit_date, xc_date, type, jm_id, xc_obj, title, picture, content, flow_people, reform, zg_progress, xc_status, sh_remark, create_by, create_time, update_by, update_time, dept_id, dept_name, user_id from szxc_xc_recard
|
|
|
|
|
select id, xc_name, submit_date, xc_date, type, jm_id, xc_obj, title, picture, content, flow_people, reform, zg_progress, xc_status, audit_dept, audit_deptid, audit_name, audit_result, audit_reason, sh_remark, create_by, create_time, update_by, update_time, dept_id, dept_name, user_id from szxc_xc_recard
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectSzxcXcRecardList" parameterType="SzxcXcRecard" resultMap="SzxcXcRecardResult">
|
|
|
|
|
@ -49,6 +54,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="reform != null and reform != ''"> and reform = #{reform}</if>
|
|
|
|
|
<if test="zgProgress != null and zgProgress != ''"> and zg_progress = #{zgProgress}</if>
|
|
|
|
|
<if test="xcStatus != null and xcStatus != ''"> and xc_status = #{xcStatus}</if>
|
|
|
|
|
<if test="auditDept != null and auditDept != ''"> and audit_dept = #{auditDept}</if>
|
|
|
|
|
<if test="auditDeptid != null "> and audit_deptid = #{auditDeptid}</if>
|
|
|
|
|
<if test="auditName != null and auditName != ''"> and audit_name like concat('%', #{auditName}, '%')</if>
|
|
|
|
|
<if test="auditResult != null and auditResult != ''"> and audit_result = #{auditResult}</if>
|
|
|
|
|
<if test="auditReason != null and auditReason != ''"> and audit_reason = #{auditReason}</if>
|
|
|
|
|
<if test="shRemark != null and shRemark != ''"> and sh_remark = #{shRemark}</if>
|
|
|
|
|
<if test="deptId != null "> and dept_id = #{deptId}</if>
|
|
|
|
|
<if test="deptName != null and deptName != ''"> and dept_name like concat('%', #{deptName}, '%')</if>
|
|
|
|
|
@ -77,6 +87,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="reform != null">reform,</if>
|
|
|
|
|
<if test="zgProgress != null">zg_progress,</if>
|
|
|
|
|
<if test="xcStatus != null">xc_status,</if>
|
|
|
|
|
<if test="auditDept != null">audit_dept,</if>
|
|
|
|
|
<if test="auditDeptid != null">audit_deptid,</if>
|
|
|
|
|
<if test="auditName != null">audit_name,</if>
|
|
|
|
|
<if test="auditResult != null">audit_result,</if>
|
|
|
|
|
<if test="auditReason != null">audit_reason,</if>
|
|
|
|
|
<if test="shRemark != null">sh_remark,</if>
|
|
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
|
|
@ -100,6 +115,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="reform != null">#{reform},</if>
|
|
|
|
|
<if test="zgProgress != null">#{zgProgress},</if>
|
|
|
|
|
<if test="xcStatus != null">#{xcStatus},</if>
|
|
|
|
|
<if test="auditDept != null">#{auditDept},</if>
|
|
|
|
|
<if test="auditDeptid != null">#{auditDeptid},</if>
|
|
|
|
|
<if test="auditName != null">#{auditName},</if>
|
|
|
|
|
<if test="auditResult != null">#{auditResult},</if>
|
|
|
|
|
<if test="auditReason != null">#{auditReason},</if>
|
|
|
|
|
<if test="shRemark != null">#{shRemark},</if>
|
|
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
|
|
@ -127,6 +147,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="reform != null">reform = #{reform},</if>
|
|
|
|
|
<if test="zgProgress != null">zg_progress = #{zgProgress},</if>
|
|
|
|
|
<if test="xcStatus != null">xc_status = #{xcStatus},</if>
|
|
|
|
|
<if test="auditDept != null">audit_dept = #{auditDept},</if>
|
|
|
|
|
<if test="auditDeptid != null">audit_deptid = #{auditDeptid},</if>
|
|
|
|
|
<if test="auditName != null">audit_name = #{auditName},</if>
|
|
|
|
|
<if test="auditResult != null">audit_result = #{auditResult},</if>
|
|
|
|
|
<if test="auditReason != null">audit_reason = #{auditReason},</if>
|
|
|
|
|
<if test="shRemark != null">sh_remark = #{shRemark},</if>
|
|
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
|
|
|