检验信用;

This commit is contained in:
王奎兴
2026-06-17 15:38:19 +08:00
parent 23dc97f1d0
commit 93a6f7228c
11 changed files with 829 additions and 9 deletions
@@ -605,4 +605,16 @@
update "NGWL_TEST_WMS".stock_out_order set return_quantity = #{quantity} where out_order_number = #{orderNumber}
</update>
<select id="getIsCheckCredit" parameterType="java.lang.Long" resultType="java.lang.String">
select IS_CHECK_CREDIT from "NGWL_TEST_USER".USER_SHIPPER where 1 = 1 and DEL_FLAG = 1 and USER_ID = #{id}
</select>
<select id="getCreditAmount" parameterType="java.lang.Long" resultType="java.math.BigDecimal">
select CREDIT_AMOUNT from "NGWL_TEST_USER".USER_SHIPPER where 1 = 1 and DEL_FLAG = 1 and USER_ID = #{id}
</select>
<select id="getCustomerNcCode" parameterType="java.lang.Long" resultType="java.lang.String">
select CUSTOMER_NC_CODE from "NGWL_TEST_USER".USER_SHIPPER where 1 = 1 and DEL_FLAG = 1 and USER_ID = #{id}
</select>
</mapper>