update 保存提现信息

This commit is contained in:
2023-08-01 16:59:33 +08:00
parent 1674975193
commit 8bedb86374
5 changed files with 60 additions and 3 deletions

View File

@@ -1,6 +1,9 @@
package com.jsowell.pile.service;
import com.jsowell.pile.domain.ClearingBillInfo;
import java.util.List;
public interface ClearingBillInfoService{
@@ -16,4 +19,7 @@ public interface ClearingBillInfoService{
int updateByPrimaryKey(ClearingBillInfo record);
List<ClearingBillInfo> selectByMerchantId(String merchantId);
void updateStatus(List<Integer> clearingBillIds, String billStatus);
}