|
@@ -13,10 +13,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="directory" column="directory" />
|
|
|
<result property="code" column="code" />
|
|
|
<result property="name" column="name" />
|
|
|
- <result property="yeaNoNa" column="yea_no_na" />
|
|
|
+ <result property="yesNoNa" column="yes_no_na" />
|
|
|
<result property="minimumStandard" column="minimum_standard" />
|
|
|
<result property="goodPractices" column="good_practices" />
|
|
|
- <result property="starndard" column="starndard" />
|
|
|
+ <result property="standard" column="standard" />
|
|
|
<result property="completionStatus" column="completion_status" />
|
|
|
<result property="personInCharge" column="person_in_charge" />
|
|
|
<result property="reviewer" column="reviewer" />
|
|
@@ -25,7 +25,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTSecSubChapVo">
|
|
|
- select id, audit_id, sub_chap_id, year, type, directory, code, name, yea_no_na, minimum_standard, good_practices, starndard, completion_status, person_in_charge, reviewer, remarks, dept_id from t_sec_sub_chap
|
|
|
+ select id, audit_id, sub_chap_id, year, type, directory, code, name, yes_no_na, minimum_standard, good_practices, standard, completion_status, person_in_charge, reviewer, remarks, dept_id from t_sec_sub_chap
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTSecSubChapList" parameterType="TSecSubChap" resultMap="TSecSubChapResult">
|
|
@@ -38,10 +38,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="directory != null and directory != ''"> and directory = #{directory}</if>
|
|
|
<if test="code != null "> and code = #{code}</if>
|
|
|
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
|
|
|
- <if test="yeaNoNa != null and yeaNoNa != ''"> and yea_no_na = #{yeaNoNa}</if>
|
|
|
+ <if test="yesNoNa != null and yesNoNa != ''"> and yes_no_na = #{yesNoNa}</if>
|
|
|
<if test="minimumStandard != null and minimumStandard != ''"> and minimum_standard = #{minimumStandard}</if>
|
|
|
<if test="goodPractices != null and goodPractices != ''"> and good_practices = #{goodPractices}</if>
|
|
|
- <if test="starndard != null and starndard != ''"> and starndard = #{starndard}</if>
|
|
|
+ <if test="standard != null and standard != ''"> and standard = #{standard}</if>
|
|
|
<if test="completionStatus != null and completionStatus != ''"> and completion_status = #{completionStatus}</if>
|
|
|
<if test="personInCharge != null "> and person_in_charge = #{personInCharge}</if>
|
|
|
<if test="reviewer != null "> and reviewer = #{reviewer}</if>
|
|
@@ -65,10 +65,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="directory != null">directory,</if>
|
|
|
<if test="code != null">code,</if>
|
|
|
<if test="name != null">name,</if>
|
|
|
- <if test="yeaNoNa != null">yea_no_na,</if>
|
|
|
+ <if test="yesNoNa != null">yes_no_na,</if>
|
|
|
<if test="minimumStandard != null">minimum_standard,</if>
|
|
|
<if test="goodPractices != null">good_practices,</if>
|
|
|
- <if test="starndard != null">starndard,</if>
|
|
|
+ <if test="standard != null">standard,</if>
|
|
|
<if test="completionStatus != null">completion_status,</if>
|
|
|
<if test="personInCharge != null">person_in_charge,</if>
|
|
|
<if test="reviewer != null">reviewer,</if>
|
|
@@ -83,10 +83,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="directory != null">#{directory},</if>
|
|
|
<if test="code != null">#{code},</if>
|
|
|
<if test="name != null">#{name},</if>
|
|
|
- <if test="yeaNoNa != null">#{yeaNoNa},</if>
|
|
|
+ <if test="yesNoNa != null">#{yesNoNa},</if>
|
|
|
<if test="minimumStandard != null">#{minimumStandard},</if>
|
|
|
<if test="goodPractices != null">#{goodPractices},</if>
|
|
|
- <if test="starndard != null">#{starndard},</if>
|
|
|
+ <if test="standard != null">#{standard},</if>
|
|
|
<if test="completionStatus != null">#{completionStatus},</if>
|
|
|
<if test="personInCharge != null">#{personInCharge},</if>
|
|
|
<if test="reviewer != null">#{reviewer},</if>
|
|
@@ -105,10 +105,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="directory != null">directory = #{directory},</if>
|
|
|
<if test="code != null">code = #{code},</if>
|
|
|
<if test="name != null">name = #{name},</if>
|
|
|
- <if test="yeaNoNa != null">yea_no_na = #{yeaNoNa},</if>
|
|
|
+ <if test="yesNoNa != null">yes_no_na = #{yesNoNa},</if>
|
|
|
<if test="minimumStandard != null">minimum_standard = #{minimumStandard},</if>
|
|
|
<if test="goodPractices != null">good_practices = #{goodPractices},</if>
|
|
|
- <if test="starndard != null">starndard = #{starndard},</if>
|
|
|
+ <if test="standard != null">standard = #{standard},</if>
|
|
|
<if test="completionStatus != null">completion_status = #{completionStatus},</if>
|
|
|
<if test="personInCharge != null">person_in_charge = #{personInCharge},</if>
|
|
|
<if test="reviewer != null">reviewer = #{reviewer},</if>
|