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} + )