Przeglądaj źródła

提现管理增加商家商户号字段

wanxl 1 rok temu
rodzic
commit
c2bff7efe1

+ 4 - 0
src/main/java/com/sqx/modules/pay/vo/CashOutVO.java

@@ -19,5 +19,9 @@ public class CashOutVO extends CashOut {
      * 站点名称
      */
     private String stationName;
+    /**
+     * 商户号
+     */
+    private String mchId;
 
 }

+ 1 - 1
src/main/resources/mapper/pay/CashDao.xml

@@ -298,7 +298,7 @@
     </sql>
 
     <select id="selectCashOutList" resultType="com.sqx.modules.pay.vo.CashOutVO">
-        select gh.shop_name, co.*,rs.station_name as stationName,tu.user_name as userName
+        select gh.shop_name, co.*,rs.station_name as stationName,tu.user_name as userName,gh.mch_id as mchId
         from cash_out co
         left join goods_shop gh on gh.shop_id = co.shop_id
         left join tb_user tu on tu.user_id=co.user_id