From 77535090a0cde4d71514c812276f4433acbc9c0d Mon Sep 17 00:00:00 2001 From: sxu <602087911@qq.com> Date: Tue, 12 Nov 2024 18:25:46 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=86=E6=96=99=E6=8E=A5=E5=8F=A3=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../material/basic/BmAgreementInfoMapper.xml | 57 ++++--------------- 1 file changed, 12 insertions(+), 45 deletions(-) diff --git a/bonus-modules/bonus-material/src/main/resources/mapper/material/basic/BmAgreementInfoMapper.xml b/bonus-modules/bonus-material/src/main/resources/mapper/material/basic/BmAgreementInfoMapper.xml index c39b06ae..ac7afa70 100644 --- a/bonus-modules/bonus-material/src/main/resources/mapper/material/basic/BmAgreementInfoMapper.xml +++ b/bonus-modules/bonus-material/src/main/resources/mapper/material/basic/BmAgreementInfoMapper.xml @@ -63,51 +63,18 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - insert into bm_agreement_info - - agreement_code, - sign_time, - unit_id, - project_id, - create_by, - lease_day, - plan_start_time, - contract_code, - auth_person, - phone, - create_time, - update_by, - update_time, - remark, - company_id, - file_name, - file_url, - status, - protocol, - is_slt, - - - #{agreementCode}, - #{signTime}, - #{unitId}, - #{projectId}, - #{createBy}, - #{leaseDay}, - #{planStartTime}, - #{contractCode}, - #{authPerson}, - #{phone}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - #{companyId}, - #{fileName}, - #{fileUrl}, - '1', - #{protocol}, - #{isSlt}, - + insert into bm_agreement_info (agreement_code, sign_time, unit_id, + project_id, create_by, lease_day, + plan_start_time, contract_code, auth_person, + phone, create_time, update_by, + update_time, remark, company_id + ) + values (#{agreementCode,jdbcType=VARCHAR}, #{signTime,jdbcType=VARCHAR}, #{unitId,jdbcType=INTEGER}, + #{projectId,jdbcType=INTEGER}, #{createBy,jdbcType=VARCHAR}, #{leaseDay,jdbcType=INTEGER}, + #{planStartTime,jdbcType=TIMESTAMP}, #{contractCode,jdbcType=VARCHAR}, #{authPerson,jdbcType=VARCHAR}, + #{phone,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateBy,jdbcType=VARCHAR}, + #{updateTime,jdbcType=TIMESTAMP}, #{remark,jdbcType=VARCHAR}, #{companyId,jdbcType=INTEGER} + )