From f18119f31d23ffe789f9347a9d697fae279f4ffa Mon Sep 17 00:00:00 2001 From: wujianwei <wjw@11.com> Date: 星期四, 14 八月 2025 10:12:31 +0800 Subject: [PATCH] 新增结算接口 --- service/src/main/resources/mapper/cwgl/PendingSettlementBusinessMapper.xml | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/service/src/main/resources/mapper/cwgl/PendingSettlementBusinessMapper.xml b/service/src/main/resources/mapper/cwgl/PendingSettlementBusinessMapper.xml index 1516884..6a690e7 100644 --- a/service/src/main/resources/mapper/cwgl/PendingSettlementBusinessMapper.xml +++ b/service/src/main/resources/mapper/cwgl/PendingSettlementBusinessMapper.xml @@ -55,7 +55,7 @@ <result property="updateTime" column="update_time" /> <result property="isCreate" column="is_create" /> <result property="billId" column="bill_id" /> - <result property="billId" column="bill_name" /> + <result property="billName" column="bill_name" /> </resultMap> <sql id="selectPendingSettlementBusinessVo"> @@ -274,6 +274,10 @@ SELECT customer_name from pending_settlement_business group by customer_name </select> + <select id="selectPendingSettlementBusinessDispatchNos" resultType="java.lang.String"> + SELECT dispatch_no from pending_settlement_business where bill_id = #{id} + + </select> <!-- 鏂板 --> <insert id="insertPendingSettlementBusiness" parameterType="com.ruoyi.cwgl.domain.PendingSettlementBusiness" useGeneratedKeys="true" keyProperty="id"> -- Gitblit v1.8.0