From d30f51ef23798fea6e83859684267cbb133fed9c Mon Sep 17 00:00:00 2001 From: heheng <heheng@123456> Date: 星期一, 20 一月 2025 10:17:31 +0800 Subject: [PATCH] 特种作业非煤缴费版本 --- exam-system/src/main/resources/mapper/pay/NonCoalPayCategoryMapper.xml | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/exam-system/src/main/resources/mapper/pay/NonCoalPayCategoryMapper.xml b/exam-system/src/main/resources/mapper/pay/NonCoalPayCategoryMapper.xml index abe1aa5..c836dcc 100644 --- a/exam-system/src/main/resources/mapper/pay/NonCoalPayCategoryMapper.xml +++ b/exam-system/src/main/resources/mapper/pay/NonCoalPayCategoryMapper.xml @@ -9,6 +9,7 @@ <result property="nonCoalPayId" column="non_coal_pay_id"/> <result property="categoryId" column="category_id"/> <result property="categoryType" column="category_type"/> + <result property="categoryAmount" column="category_amount"/> <result property="updateBy" column="update_by"/> <result property="updateTime" column="update_time"/> <result property="createBy" column="create_by"/> @@ -21,6 +22,7 @@ non_coal_pay_id, category_id, category_type, + category_amount, update_by, update_time, create_by, @@ -50,6 +52,7 @@ <if test="nonCoalPayId != null">non_coal_pay_id,</if> <if test="categoryId != null">category_id,</if> <if test="categoryType != null">category_type,</if> + <if test="categoryAmount != null">category_amount,</if> <if test="updateBy != null">update_by,</if> <if test="updateTime != null">update_time,</if> <if test="createBy != null">create_by,</if> @@ -61,6 +64,7 @@ <if test="nonCoalPayId != null">#{nonCoalPayId},</if> <if test="categoryId != null">#{categoryId},</if> <if test="categoryType != null">#{categoryType},</if> + <if test="categoryAmount != null">#{categoryAmount},</if> <if test="updateBy != null">#{updateBy},</if> <if test="updateTime != null">#{updateTime},</if> <if test="createBy != null">#{createBy},</if> @@ -75,6 +79,7 @@ <if test="nonCoalPayId != null">non_coal_pay_id = #{nonCoalPayId},</if> <if test="categoryId != null">category_id = #{categoryId},</if> <if test="categoryType != null">category_type = #{categoryType},</if> + <if test="categoryAmount != null">category_amount = #{categoryAmount},</if> <if test="updateBy != null">update_by = #{updateBy},</if> <if test="updateTime != null">update_time = #{updateTime},</if> <if test="createBy != null">create_by = #{createBy},</if> -- Gitblit v1.9.2