|
@@ -13,6 +13,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="categoryNumber" column="category_number" />
|
|
|
<result property="amount" column="amount" />
|
|
|
<result property="quantity" column="quantity" />
|
|
|
+ <result property="quantityUnit" column="quantity_unit" />
|
|
|
<result property="buildDate" column="build_date" />
|
|
|
<result property="placeName" column="place_name" />
|
|
|
<result property="purpose" column="purpose" />
|
|
@@ -66,6 +67,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="categoryNumber != null and categoryNumber != ''">category_number,</if>
|
|
|
<if test="amount != null">amount,</if>
|
|
|
<if test="quantity != null">quantity,</if>
|
|
|
+ <if test="quantityUnit != null">quantity_unit,</if>
|
|
|
<if test="buildDate != null">build_date,</if>
|
|
|
<if test="placeName != null">place_name,</if>
|
|
|
<if test="purpose != null">purpose,</if>
|
|
@@ -86,6 +88,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="categoryNumber != null and categoryNumber != ''">#{categoryNumber},</if>
|
|
|
<if test="amount != null">#{amount},</if>
|
|
|
<if test="quantity != null">#{quantity},</if>
|
|
|
+ <if test="quantityUnit != null">#{quantityUnit},</if>
|
|
|
<if test="buildDate != null">#{buildDate},</if>
|
|
|
<if test="placeName != null">#{placeName},</if>
|
|
|
<if test="purpose != null">#{purpose},</if>
|
|
@@ -110,6 +113,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="categoryNumber != null and categoryNumber != ''">category_number = #{categoryNumber},</if>
|
|
|
<if test="amount != null">amount = #{amount},</if>
|
|
|
<if test="quantity != null">quantity = #{quantity},</if>
|
|
|
+ <if test="quantityUnit != null">quantity_unit = #{quantityUnit},</if>
|
|
|
<if test="buildDate != null">build_date = #{buildDate},</if>
|
|
|
<if test="placeName != null">place_name = #{placeName},</if>
|
|
|
<if test="purpose != null">purpose = #{purpose},</if>
|
|
@@ -135,4 +139,50 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
#{id}
|
|
|
</foreach>
|
|
|
</delete>
|
|
|
+
|
|
|
+ <insert id="replace" parameterType="TbAsset">
|
|
|
+ replace into tb_asset
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="barCode != null and barCode != ''">bar_code,</if>
|
|
|
+ <if test="number != null and number != ''">number,</if>
|
|
|
+ <if test="name != null and name != ''">name,</if>
|
|
|
+ <if test="kind != null and kind != ''">kind,</if>
|
|
|
+ <if test="categoryNumber != null and categoryNumber != ''">category_number,</if>
|
|
|
+ <if test="amount != null">amount,</if>
|
|
|
+ <if test="quantity != null">quantity,</if>
|
|
|
+ <if test="quantityUnit != null">quantity_unit,</if>
|
|
|
+ <if test="buildDate != null">build_date,</if>
|
|
|
+ <if test="placeName != null">place_name,</if>
|
|
|
+ <if test="purpose != null">purpose,</if>
|
|
|
+ <if test="deptId != null">dept_id,</if>
|
|
|
+ <if test="registrant != null and registrant != ''">registrant,</if>
|
|
|
+ <if test="specificationsModel != null and specificationsModel != ''">specifications_model,</if>
|
|
|
+ <if test="remark != null">remark,</if>
|
|
|
+ <if test="manufacturer != null">manufacturer,</if>
|
|
|
+ <if test="brand != null">brand,</if>
|
|
|
+ <if test="supplier != null">supplier,</if>
|
|
|
+ <if test="status != null">status,</if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="barCode != null and barCode != ''">#{barCode},</if>
|
|
|
+ <if test="number != null and number != ''">#{number},</if>
|
|
|
+ <if test="name != null and name != ''">#{name},</if>
|
|
|
+ <if test="kind != null and kind != ''">#{kind},</if>
|
|
|
+ <if test="categoryNumber != null and categoryNumber != ''">#{categoryNumber},</if>
|
|
|
+ <if test="amount != null">#{amount},</if>
|
|
|
+ <if test="quantity != null">#{quantity},</if>
|
|
|
+ <if test="quantityUnit != null">#{quantityUnit},</if>
|
|
|
+ <if test="buildDate != null">#{buildDate},</if>
|
|
|
+ <if test="placeName != null">#{placeName},</if>
|
|
|
+ <if test="purpose != null">#{purpose},</if>
|
|
|
+ <if test="deptId != null">#{deptId},</if>
|
|
|
+ <if test="registrant != null and registrant != ''">#{registrant},</if>
|
|
|
+ <if test="specificationsModel != null and specificationsModel != ''">#{specificationsModel},</if>
|
|
|
+ <if test="remark != null">#{remark},</if>
|
|
|
+ <if test="manufacturer != null">#{manufacturer},</if>
|
|
|
+ <if test="brand != null">#{brand},</if>
|
|
|
+ <if test="supplier != null">#{supplier},</if>
|
|
|
+ <if test="status != null">#{status},</if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
</mapper>
|