From c71b52bbfb3b32bfec60764db94a43e0f596e463 Mon Sep 17 00:00:00 2001 From: "shuo.wang" Date: Tue, 1 Jul 2025 18:44:54 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E8=A3=85=E4=BF=AE=E9=AA=8C=E6=94=B6?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/mapper/AcceptanceInfoMapper.xml | 19 ++++- .../main/resources/mapper/ShopInfoMapper.xml | 1 + .../dto/decoration/ThreeAcceptanceDTO.java | 4 + .../cool/store/entity/AcceptanceInfoDO.java | 48 +++++++++++ .../store/request/ThreeAcceptanceRequest.java | 16 +++- .../store/response/ThreeSignResponse.java | 12 +++ .../service/impl/DecorationServiceImpl.java | 84 +++++++++++-------- .../store/service/impl/DeskServiceImpl.java | 2 +- .../store/service/impl/ShopServiceImpl.java | 3 +- 9 files changed, 150 insertions(+), 39 deletions(-) diff --git a/coolstore-partner-dao/src/main/resources/mapper/AcceptanceInfoMapper.xml b/coolstore-partner-dao/src/main/resources/mapper/AcceptanceInfoMapper.xml index 084d77448..0596c02e6 100644 --- a/coolstore-partner-dao/src/main/resources/mapper/AcceptanceInfoMapper.xml +++ b/coolstore-partner-dao/src/main/resources/mapper/AcceptanceInfoMapper.xml @@ -27,6 +27,10 @@ + + + + id @@ -34,7 +38,8 @@ decoration_planned_start_time,construction_completion_time,engineering_acceptance_signatures, operations_acceptance_signatures,partner_acceptance_signatures, create_time,update_time,deleted,plan_acceptance_time,actual_acceptance_time,booking_user,plan_exit_time, - ks_account,verification_mobile,shop_location_screenshots,shop_doorway_photo,shop_interior_photo + ks_account,verification_mobile,shop_location_screenshots,shop_doorway_photo,shop_interior_photo, + satisfaction,acceptance_attachment,is_network_cable,back_kitchen_photo @@ -105,6 +110,18 @@ shop_interior_photo =#{shopInteriorPhoto} + + satisfaction = #{satisfaction} + + + is_network_cable = #{isNetworkCable} + + + acceptance_attachment = #{acceptanceAttachment} + + + back_kitchen_photo = #{backKitchenPhoto} + where shop_id = #{shopId} diff --git a/coolstore-partner-dao/src/main/resources/mapper/ShopInfoMapper.xml b/coolstore-partner-dao/src/main/resources/mapper/ShopInfoMapper.xml index aa7e2fe99..b79075117 100644 --- a/coolstore-partner-dao/src/main/resources/mapper/ShopInfoMapper.xml +++ b/coolstore-partner-dao/src/main/resources/mapper/ShopInfoMapper.xml @@ -212,6 +212,7 @@ and xsi.shop_name Like concat("%",#{keyWord},"%") or xsi.store_num Like concat("%",#{keyWord},"%") + order by xsi.update_time desc