|
@@ -17,131 +17,5 @@
|
|
|
id_, tenant_id_, serve_id_, serve_detail_id_, original_price_, contract_price_, pay_amount_,
|
|
|
expiry_count_, expiry_unit_, expiry_data_
|
|
|
</sql>
|
|
|
- <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
|
|
- select
|
|
|
- <include refid="Base_Column_List" />
|
|
|
- from tenant_product_info
|
|
|
- where id_ = #{id,jdbcType=INTEGER}
|
|
|
- </select>
|
|
|
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
|
- delete from tenant_product_info
|
|
|
- where id_ = #{id,jdbcType=INTEGER}
|
|
|
- </delete>
|
|
|
- <insert id="insert" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.TenantProductInfo" useGeneratedKeys="true">
|
|
|
- insert into tenant_product_info (tenant_id_, serve_id_, serve_detail_id_,
|
|
|
- original_price_, contract_price_, pay_amount_,
|
|
|
- expiry_count_, expiry_unit_, expiry_data_
|
|
|
- )
|
|
|
- values (#{tenantId,jdbcType=INTEGER}, #{serveId,jdbcType=INTEGER}, #{serveDetailId,jdbcType=INTEGER},
|
|
|
- #{originalPrice,jdbcType=DECIMAL}, #{contractPrice,jdbcType=DECIMAL}, #{payAmount,jdbcType=DECIMAL},
|
|
|
- #{expiryCount,jdbcType=INTEGER}, #{expiryUnit,jdbcType=VARCHAR}, #{expiryData,jdbcType=DATE}
|
|
|
- )
|
|
|
- </insert>
|
|
|
- <insert id="insertSelective" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.TenantProductInfo" useGeneratedKeys="true">
|
|
|
- insert into tenant_product_info
|
|
|
- <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
- <if test="tenantId != null">
|
|
|
- tenant_id_,
|
|
|
- </if>
|
|
|
- <if test="serveId != null">
|
|
|
- serve_id_,
|
|
|
- </if>
|
|
|
- <if test="serveDetailId != null">
|
|
|
- serve_detail_id_,
|
|
|
- </if>
|
|
|
- <if test="originalPrice != null">
|
|
|
- original_price_,
|
|
|
- </if>
|
|
|
- <if test="contractPrice != null">
|
|
|
- contract_price_,
|
|
|
- </if>
|
|
|
- <if test="payAmount != null">
|
|
|
- pay_amount_,
|
|
|
- </if>
|
|
|
- <if test="expiryCount != null">
|
|
|
- expiry_count_,
|
|
|
- </if>
|
|
|
- <if test="expiryUnit != null">
|
|
|
- expiry_unit_,
|
|
|
- </if>
|
|
|
- <if test="expiryData != null">
|
|
|
- expiry_data_,
|
|
|
- </if>
|
|
|
- </trim>
|
|
|
- <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
- <if test="tenantId != null">
|
|
|
- #{tenantId,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
- <if test="serveId != null">
|
|
|
- #{serveId,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
- <if test="serveDetailId != null">
|
|
|
- #{serveDetailId,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
- <if test="originalPrice != null">
|
|
|
- #{originalPrice,jdbcType=DECIMAL},
|
|
|
- </if>
|
|
|
- <if test="contractPrice != null">
|
|
|
- #{contractPrice,jdbcType=DECIMAL},
|
|
|
- </if>
|
|
|
- <if test="payAmount != null">
|
|
|
- #{payAmount,jdbcType=DECIMAL},
|
|
|
- </if>
|
|
|
- <if test="expiryCount != null">
|
|
|
- #{expiryCount,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
- <if test="expiryUnit != null">
|
|
|
- #{expiryUnit,jdbcType=VARCHAR},
|
|
|
- </if>
|
|
|
- <if test="expiryData != null">
|
|
|
- #{expiryData,jdbcType=DATE},
|
|
|
- </if>
|
|
|
- </trim>
|
|
|
- </insert>
|
|
|
- <update id="updateByPrimaryKeySelective" parameterType="com.ym.mec.biz.dal.entity.TenantProductInfo">
|
|
|
- update tenant_product_info
|
|
|
- <set>
|
|
|
- <if test="tenantId != null">
|
|
|
- tenant_id_ = #{tenantId,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
- <if test="serveId != null">
|
|
|
- serve_id_ = #{serveId,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
- <if test="serveDetailId != null">
|
|
|
- serve_detail_id_ = #{serveDetailId,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
- <if test="originalPrice != null">
|
|
|
- original_price_ = #{originalPrice,jdbcType=DECIMAL},
|
|
|
- </if>
|
|
|
- <if test="contractPrice != null">
|
|
|
- contract_price_ = #{contractPrice,jdbcType=DECIMAL},
|
|
|
- </if>
|
|
|
- <if test="payAmount != null">
|
|
|
- pay_amount_ = #{payAmount,jdbcType=DECIMAL},
|
|
|
- </if>
|
|
|
- <if test="expiryCount != null">
|
|
|
- expiry_count_ = #{expiryCount,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
- <if test="expiryUnit != null">
|
|
|
- expiry_unit_ = #{expiryUnit,jdbcType=VARCHAR},
|
|
|
- </if>
|
|
|
- <if test="expiryData != null">
|
|
|
- expiry_data_ = #{expiryData,jdbcType=DATE},
|
|
|
- </if>
|
|
|
- </set>
|
|
|
- where id_ = #{id,jdbcType=INTEGER}
|
|
|
- </update>
|
|
|
- <update id="updateByPrimaryKey" parameterType="com.ym.mec.biz.dal.entity.TenantProductInfo">
|
|
|
- update tenant_product_info
|
|
|
- set tenant_id_ = #{tenantId,jdbcType=INTEGER},
|
|
|
- serve_id_ = #{serveId,jdbcType=INTEGER},
|
|
|
- serve_detail_id_ = #{serveDetailId,jdbcType=INTEGER},
|
|
|
- original_price_ = #{originalPrice,jdbcType=DECIMAL},
|
|
|
- contract_price_ = #{contractPrice,jdbcType=DECIMAL},
|
|
|
- pay_amount_ = #{payAmount,jdbcType=DECIMAL},
|
|
|
- expiry_count_ = #{expiryCount,jdbcType=INTEGER},
|
|
|
- expiry_unit_ = #{expiryUnit,jdbcType=VARCHAR},
|
|
|
- expiry_data_ = #{expiryData,jdbcType=DATE}
|
|
|
- where id_ = #{id,jdbcType=INTEGER}
|
|
|
- </update>
|
|
|
+
|
|
|
</mapper>
|