From aec4636e4fb430055feb66751da0e6c05bb864df Mon Sep 17 00:00:00 2001 From: zuoxiao <470321431@qq.com> Date: 星期三, 30 四月 2025 16:25:30 +0800 Subject: [PATCH] fix(irrigatePlan): 修复终止灌溉计划时长设置错误- 将终止计划的默认时长从 9999 修改为 0 - 此修改确保在终止灌溉计划时,不会出现时长设置过长的问题 --- pipIrr-platform/pipIrr-global/src/main/resources/mapper/SePaymentMethodMapper.xml | 24 +++++++++++++++--------- 1 files changed, 15 insertions(+), 9 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SePaymentMethodMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SePaymentMethodMapper.xml index f6a0859..ffae3bb 100644 --- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SePaymentMethodMapper.xml +++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SePaymentMethodMapper.xml @@ -20,28 +20,25 @@ from se_payment_method where id = #{id,jdbcType=BIGINT} </select> - - <!--鑾峰彇鍏ㄩ儴鏈垹闄や粯娆炬柟寮�--> - <select id="getPaymentMethods" resultType="com.dy.pipIrrGlobal.pojoSe.SePaymentMethod"> - SELECT * FROM se_payment_method WHERE deleted = 0 - </select> - <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> <!--@mbg.generated--> delete from se_payment_method where id = #{id,jdbcType=BIGINT} </delete> - <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.dy.pipIrrGlobal.pojoSe.SePaymentMethod" useGeneratedKeys="true"> + <insert id="insert" parameterType="com.dy.pipIrrGlobal.pojoSe.SePaymentMethod" > <!--@mbg.generated--> - insert into se_payment_method (`name`, remarks, deleted + insert into se_payment_method (id, `name`, remarks, deleted ) - values (#{name,jdbcType=VARCHAR}, #{remarks,jdbcType=VARCHAR}, #{deleted,jdbcType=TINYINT} + values (#{id,jdbcType=BIGINT},#{name,jdbcType=VARCHAR}, #{remarks,jdbcType=VARCHAR}, #{deleted,jdbcType=TINYINT} ) </insert> <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.dy.pipIrrGlobal.pojoSe.SePaymentMethod" useGeneratedKeys="true"> <!--@mbg.generated--> insert into se_payment_method <trim prefix="(" suffix=")" suffixOverrides=","> + <if test="id != null"> + id, + </if> <if test="name != null"> `name`, </if> @@ -53,6 +50,9 @@ </if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> + <if test="id != null"> + #{id,jdbcType=BIGINT}, + </if> <if test="name != null"> #{name,jdbcType=VARCHAR}, </if> @@ -88,4 +88,10 @@ deleted = #{deleted,jdbcType=TINYINT} where id = #{id,jdbcType=BIGINT} </update> + + + <!--鑾峰彇鍏ㄩ儴鏈垹闄や粯娆炬柟寮�--> + <select id="getPaymentMethods" resultType="com.dy.pipIrrGlobal.pojoSe.SePaymentMethod"> + SELECT * FROM se_payment_method WHERE deleted = 0 + </select> </mapper> \ No newline at end of file -- Gitblit v1.8.0