wujianwei
2025-08-15 254a2998c07916de66c464928bbb1beeacfe72d6
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">
@@ -272,6 +272,10 @@
    </select>
    <select id="selectCustomName" resultType="java.lang.String">
        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>
@@ -532,5 +536,9 @@
            #{id}
        </foreach>
    </delete>
    <delete id="cancelRelevancy">
         UPDATE pending_settlement_business set bill_id = null ,bill_name = null
         where id = #{id}
    </delete>
</mapper>