|
|
|
@ -1,6 +1,5 @@ |
|
|
|
package com.example.demo.serviceImpl.cash; |
|
|
|
|
|
|
|
import com.example.demo.domain.vo.cash.CashCollection; |
|
|
|
import com.example.demo.domain.vo.cash.CashRecordDone; |
|
|
|
import com.example.demo.domain.vo.coin.Result; |
|
|
|
import com.example.demo.mapper.cash.CashRefundMapper; |
|
|
|
@ -119,4 +118,9 @@ public class CashRefundServiceImpl implements RefundService { |
|
|
|
int result = cashRefundMapper.executor(cashRecordDone); |
|
|
|
return (result > 0 ? Result.success("提交成功") : Result.error("提交失败")).getCode(); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public int updateStatus(CashRecordDone cashRecordDone) { |
|
|
|
return cashRefundMapper.updateStatus(cashRecordDone); |
|
|
|
} |
|
|
|
} |