|
@@ -24,6 +24,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="phone" column="phone" />
|
|
|
<result property="tbTime" column="tb_time" />
|
|
|
<result property="dbType" column="db_type" />
|
|
|
+ <result property="progress" column="progress" />
|
|
|
<result property="createBy" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
|
<result property="updateBy" column="update_by" />
|
|
@@ -32,7 +33,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectZsyzDbdVo">
|
|
|
- select id, dh, xm_id, xmbh, xmmc, dept_id, dept_name, is_hf, db_time, blsx, dbsx, jzqk, czwt, jjjy, gzjh, tbr, phone, tb_time,db_type, create_by, create_time, update_by, update_time, remark from zsyz_dbd
|
|
|
+ select id, dh, xm_id, xmbh, xmmc, dept_id, dept_name, is_hf, db_time, blsx, dbsx, jzqk, czwt, jjjy, gzjh, tbr, phone, tb_time,db_type,progress, create_by, create_time, update_by, update_time, remark from zsyz_dbd
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectZsyzDbdList" parameterType="ZsyzDbd" resultMap="ZsyzDbdResult">
|
|
@@ -56,6 +57,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="phone != null and phone != ''"> and phone = #{phone}</if>
|
|
|
<if test="tbTime != null "> and tb_time = #{tbTime}</if>
|
|
|
<if test="dbType != null "> and db_type = #{dbType}</if>
|
|
|
+ <if test="progress != null "> and progress = #{progress}</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|
|
@@ -85,6 +87,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="phone != null">phone,</if>
|
|
|
<if test="tbTime != null">tb_time,</if>
|
|
|
<if test="dbType != null">db_type,</if>
|
|
|
+ <if test="progress != null">progress,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
@@ -110,6 +113,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="phone != null">#{phone},</if>
|
|
|
<if test="tbTime != null">#{tbTime},</if>
|
|
|
<if test="dbType != null">#{dbType},</if>
|
|
|
+ <if test="progress != null">#{progress},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
@@ -139,6 +143,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="phone != null">phone = #{phone},</if>
|
|
|
<if test="tbTime != null">tb_time = #{tbTime},</if>
|
|
|
<if test="dbType != null">db_type = #{dbType},</if>
|
|
|
+ <if test="progress != null">progress = #{progress},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|