|
@@ -39,6 +39,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="chargeUnit" column="charge_unit" />
|
|
|
<result property="mode" column="mode" />
|
|
|
<result property="fileInfo" column="file_info" />
|
|
|
+ <result property="iconInfo" column="icon_info" />
|
|
|
<result property="createBy" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
|
<result property="updateBy" column="update_by" />
|
|
@@ -50,7 +51,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
select dangan_id,
|
|
|
key_id,
|
|
|
dangan_no,dangan_name, status,
|
|
|
- sys_person, file_type, model, project_id, brand, run_device_id, relate_device_id, maintain_item_id, factory_time, project_time, use_unit, medium, maintain_time, page_address, test_address, build_factory, build_factory_time, factory_person, factory_person_phone, language, server_ip, server_location, server_info, server_based_yes_no, ops_person, charge_unit, mode, file_info, create_by, create_time, update_by, update_time, remark from sys_dangan
|
|
|
+ sys_person, file_type, model, project_id, brand, run_device_id, relate_device_id, maintain_item_id, factory_time, project_time, use_unit, medium, maintain_time, page_address, test_address, build_factory, build_factory_time, factory_person, factory_person_phone, language, server_ip, server_location, server_info, server_based_yes_no, ops_person, charge_unit, mode, file_info,icon_info, create_by, create_time, update_by, update_time, remark from sys_dangan
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectDanganList" parameterType="Dangan" resultMap="DanganResult">
|
|
@@ -89,6 +90,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="chargeUnit != null and chargeUnit != ''"> and charge_unit = #{chargeUnit}</if>
|
|
|
<if test="mode != null and mode != ''"> and mode = #{mode}</if>
|
|
|
<if test="fileInfo != null and fileInfo != ''"> and file_info = #{fileInfo}</if>
|
|
|
+ <if test="iconInfo != null and iconInfo != ''"> and icon_info = #{iconInfo}</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|
|
@@ -133,6 +135,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="chargeUnit != null">charge_unit,</if>
|
|
|
<if test="mode != null">mode,</if>
|
|
|
<if test="fileInfo != null">file_info,</if>
|
|
|
+ <if test="iconInfo != null">icon_info,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
@@ -173,6 +176,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="chargeUnit != null">#{chargeUnit},</if>
|
|
|
<if test="mode != null">#{mode},</if>
|
|
|
<if test="fileInfo != null">#{fileInfo},</if>
|
|
|
+ <if test="iconInfo != null">#{iconInfo},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
@@ -217,6 +221,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="chargeUnit != null">charge_unit = #{chargeUnit},</if>
|
|
|
<if test="mode != null">mode = #{mode},</if>
|
|
|
<if test="fileInfo != null">file_info = #{fileInfo},</if>
|
|
|
+ <if test="iconInfo != null">icon_info = #{iconInfo},</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>
|