|
|
|
@ -1,6 +1,5 @@ |
|
|
|
package com.example.demo.mapper.cash; |
|
|
|
|
|
|
|
import cn.hutool.core.lang.Opt; |
|
|
|
import com.example.demo.domain.entity.CashRecord; |
|
|
|
import com.example.demo.domain.entity.GOrder; |
|
|
|
import com.example.demo.domain.entity.RechargeActivity; |
|
|
|
@ -34,7 +33,7 @@ public interface CashCollectionMapper { |
|
|
|
@Param("status") Integer status); |
|
|
|
//编辑订单 |
|
|
|
// 编辑订单(状态=5)后重新提交 |
|
|
|
int updateByOrderCode(@Param("cashRecordCollection") CashCollection cashRecord); |
|
|
|
int updateByOrderCode(@Param("cashRecordCollection") CashRecord cashRecord); |
|
|
|
//多条件查询收款订单列表 |
|
|
|
List<CashCollection> selectCollection1(@Param("pageNum") Integer pageNum, |
|
|
|
@Param("pageSize") Integer pageSize, |
|
|
|
@ -43,7 +42,7 @@ public interface CashCollectionMapper { |
|
|
|
//根据订单号查询待审核的现金收款订单 |
|
|
|
CashRecord selectAuditByOrderCode(@Param("orderCode") String orderCode); |
|
|
|
//补全手续费等信息 |
|
|
|
int complete(@Param("cashRecordCollection") CashCollection cashRecord); |
|
|
|
int complete(@Param("cashRecordCollection") CashRecord cashRecord); |
|
|
|
//根据精网号获取姓名 |
|
|
|
String getNameByJwcode(@Param("jwcode") Integer jwcode); |
|
|
|
//根据精网号获取市场名 |
|
|
|
|