mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-28 06:55:09 +08:00
update 提现逻辑优化
This commit is contained in:
@@ -19,7 +19,7 @@ public interface ClearingBillInfoService{
|
||||
|
||||
int updateByPrimaryKey(ClearingBillInfo record);
|
||||
|
||||
List<ClearingBillInfo> selectByMerchantId(String merchantId);
|
||||
List<ClearingBillInfo> selectByMerchantId(String merchantId, String billStatus);
|
||||
|
||||
void updateStatus(List<Integer> clearingBillIds, String billStatus);
|
||||
}
|
||||
|
||||
@@ -47,8 +47,8 @@ public class ClearingBillInfoServiceImpl implements ClearingBillInfoService{
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<ClearingBillInfo> selectByMerchantId(String merchantId) {
|
||||
return clearingBillInfoMapper.selectByMerchantId(merchantId);
|
||||
public List<ClearingBillInfo> selectByMerchantId(String merchantId, String billStatus) {
|
||||
return clearingBillInfoMapper.selectByMerchantId(merchantId, billStatus);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user