From 5dac73296e73011fad13c34fccfcd183138c0ec0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=86=E6=98=9F=E9=9C=96?= <729219176@qq.com> Date: Mon, 25 Mar 2024 16:14:35 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9F=AD=E5=89=A7=E8=B4=A6=E6=88=B7=E4=B8=8E?= =?UTF-8?q?=E5=BC=80=E7=A5=A8=E4=BF=A1=E6=81=AFMapper=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system}/PlayletUserAccountMapper.xml | 0 .../system/PlayletUserInvoiceMapper.xml | 107 ++++++++++++++++++ 2 files changed, 107 insertions(+) rename playlet-system/src/main/resources/{ => mapper/system}/PlayletUserAccountMapper.xml (100%) create mode 100644 playlet-system/src/main/resources/mapper/system/PlayletUserInvoiceMapper.xml diff --git a/playlet-system/src/main/resources/PlayletUserAccountMapper.xml b/playlet-system/src/main/resources/mapper/system/PlayletUserAccountMapper.xml similarity index 100% rename from playlet-system/src/main/resources/PlayletUserAccountMapper.xml rename to playlet-system/src/main/resources/mapper/system/PlayletUserAccountMapper.xml diff --git a/playlet-system/src/main/resources/mapper/system/PlayletUserInvoiceMapper.xml b/playlet-system/src/main/resources/mapper/system/PlayletUserInvoiceMapper.xml new file mode 100644 index 0000000..e919c9e --- /dev/null +++ b/playlet-system/src/main/resources/mapper/system/PlayletUserInvoiceMapper.xml @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + select id, create_time, update_time, create_by, update_by, remark, company_name, taxpayer_number, company_phone, company_site, bank_account_number, bank_account_name, user_id from playlet_user_invoice + + + + + + + + insert into playlet_user_invoice + + create_time, + update_time, + create_by, + update_by, + remark, + company_name, + taxpayer_number, + company_phone, + company_site, + bank_account_number, + bank_account_name, + user_id, + + + #{createTime}, + #{updateTime}, + #{createBy}, + #{updateBy}, + #{remark}, + #{companyName}, + #{taxpayerNumber}, + #{companyPhone}, + #{companySite}, + #{bankAccountNumber}, + #{bankAccountName}, + #{userId}, + + + + + update playlet_user_invoice + + create_time = #{createTime}, + update_time = #{updateTime}, + create_by = #{createBy}, + update_by = #{updateBy}, + remark = #{remark}, + company_name = #{companyName}, + taxpayer_number = #{taxpayerNumber}, + company_phone = #{companyPhone}, + company_site = #{companySite}, + bank_account_number = #{bankAccountNumber}, + bank_account_name = #{bankAccountName}, + user_id = #{userId}, + + where id = #{id} + + + + delete from playlet_user_invoice where id = #{id} + + + + delete from playlet_user_invoice where id in + + #{id} + + + + \ No newline at end of file