|
|
|
@ -15,6 +15,7 @@
|
|
|
|
<result property="ywType" column="yw_type" />
|
|
|
|
<result property="ywType" column="yw_type" />
|
|
|
|
<result property="daJlId" column="da_jl_id" />
|
|
|
|
<result property="daJlId" column="da_jl_id" />
|
|
|
|
<result property="recognize" column="recognize" />
|
|
|
|
<result property="recognize" column="recognize" />
|
|
|
|
|
|
|
|
<result property="errorCorrect" column="error_correct" />
|
|
|
|
<result property="remark" column="remark" />
|
|
|
|
<result property="remark" column="remark" />
|
|
|
|
<result property="createBy" column="create_by" />
|
|
|
|
<result property="createBy" column="create_by" />
|
|
|
|
<result property="createTime" column="create_time" />
|
|
|
|
<result property="createTime" column="create_time" />
|
|
|
|
@ -23,7 +24,7 @@
|
|
|
|
</resultMap>
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
<sql id="selectDaPicturesRecardVo">
|
|
|
|
<sql id="selectDaPicturesRecardVo">
|
|
|
|
select id, pic_name, pic_url, wlsj_id, wlsj_path, mu_id, mu_path, yw_type,da_jl_id, recognize, remark, create_by, create_time, update_by, update_time from da_pictures_recard
|
|
|
|
select id, pic_name, pic_url, wlsj_id, wlsj_path, mu_id, mu_path, yw_type, da_jl_id, recognize, error_correct, remark, create_by, create_time, update_by, update_time from da_pictures_recard
|
|
|
|
</sql>
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectDaPicturesRecardList" parameterType="DaPicturesRecard" resultMap="DaPicturesRecardResult">
|
|
|
|
<select id="selectDaPicturesRecardList" parameterType="DaPicturesRecard" resultMap="DaPicturesRecardResult">
|
|
|
|
@ -38,6 +39,7 @@
|
|
|
|
<if test="daJlId != null "> and da_jl_id = #{daJlId}</if>
|
|
|
|
<if test="daJlId != null "> and da_jl_id = #{daJlId}</if>
|
|
|
|
<if test="ywType != null and ywType != ''"> and yw_type = #{ywType}</if>
|
|
|
|
<if test="ywType != null and ywType != ''"> and yw_type = #{ywType}</if>
|
|
|
|
<if test="recognize != null and recognize != ''"> and recognize = #{recognize}</if>
|
|
|
|
<if test="recognize != null and recognize != ''"> and recognize = #{recognize}</if>
|
|
|
|
|
|
|
|
<if test="errorCorrect != null and errorCorrect != ''"> and error_correct = #{errorCorrect}</if>
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
order by id DESC
|
|
|
|
order by id DESC
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
@ -59,6 +61,7 @@
|
|
|
|
<if test="ywType != null">yw_type,</if>
|
|
|
|
<if test="ywType != null">yw_type,</if>
|
|
|
|
<if test="daJlId != null">da_jl_id,</if>
|
|
|
|
<if test="daJlId != null">da_jl_id,</if>
|
|
|
|
<if test="recognize != null">recognize,</if>
|
|
|
|
<if test="recognize != null">recognize,</if>
|
|
|
|
|
|
|
|
<if test="errorCorrect != null and errorCorrect != ''">error_correct,</if>
|
|
|
|
<if test="remark != null">remark,</if>
|
|
|
|
<if test="remark != null">remark,</if>
|
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
|
@ -75,6 +78,7 @@
|
|
|
|
<if test="ywType != null">#{ywType},</if>
|
|
|
|
<if test="ywType != null">#{ywType},</if>
|
|
|
|
<if test="daJlId != null">#{daJlId},</if>
|
|
|
|
<if test="daJlId != null">#{daJlId},</if>
|
|
|
|
<if test="recognize != null">#{recognize},</if>
|
|
|
|
<if test="recognize != null">#{recognize},</if>
|
|
|
|
|
|
|
|
<if test="errorCorrect != null and errorCorrect != ''">#{errorCorrect},</if>
|
|
|
|
<if test="remark != null">#{remark},</if>
|
|
|
|
<if test="remark != null">#{remark},</if>
|
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
|
@ -95,6 +99,7 @@
|
|
|
|
<if test="ywType != null">yw_type = #{ywType},</if>
|
|
|
|
<if test="ywType != null">yw_type = #{ywType},</if>
|
|
|
|
<if test="daJlId != null">da_jl_id = #{daJlId},</if>
|
|
|
|
<if test="daJlId != null">da_jl_id = #{daJlId},</if>
|
|
|
|
<if test="recognize != null">recognize = #{recognize},</if>
|
|
|
|
<if test="recognize != null">recognize = #{recognize},</if>
|
|
|
|
|
|
|
|
<if test="errorCorrect != null and errorCorrect != ''">error_correct = #{errorCorrect},</if>
|
|
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
|
|