From 3274fd1f8f2a1324c0e55e673afe286a21445211 Mon Sep 17 00:00:00 2001 From: 79493 <794930212@qq.com> Date: Thu, 18 May 2023 23:26:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=85=E5=8D=95=E4=B8=8A=E4=BC=A0=E5=B7=A5?= =?UTF-8?q?=E5=85=B7=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/mapper/InPostListMapper.xml | 5 +++-- .../resources/mapper/ent/InListItemMapper.xml | 6 ++++-- .../com/rzyc/controller/UploadController.java | 4 ++-- .../easyexcel/EntEnterprisePostListener.java | 17 ++++++++++++----- 4 files changed, 21 insertions(+), 11 deletions(-) diff --git a/inventory-dao/src/main/resources/mapper/InPostListMapper.xml b/inventory-dao/src/main/resources/mapper/InPostListMapper.xml index c9a5b3c..10ce5ce 100644 --- a/inventory-dao/src/main/resources/mapper/InPostListMapper.xml +++ b/inventory-dao/src/main/resources/mapper/InPostListMapper.xml @@ -27,7 +27,7 @@ public_post_list_id, public_post_id, list_id, public_item_title, public_item_content, sort_id, year_num, standard, frequency, red_alert, yellow_alert, del_state, create_time, create_by, modify_time, modify_by - insert into in_post_list (public_post_list_id,public_post_id,list_id,public_item_title,public_item_content, sort_id,standard, frequency,create_time, create_by)values + insert into in_post_list (public_post_list_id,public_post_id,list_id,public_item_title,public_item_content, sort_id,standard, frequency,create_time, create_by,year_num)values (#{list.publicPostListId}, #{list.publicPostId}, @@ -37,7 +37,8 @@ #{list.sortId},#{list.standard}, #{list.frequency}, #{list.createTime}, - #{list.createBy}) + #{list.createBy}, + #{list.yearNum})