cloudroam
2024-10-24 9e3c6fa190b1c59b2178ae1823c994684a4d9df3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mzl.flower.service.wallet;
 
import com.mzl.flower.dto.request.wallet.CreateWalletBillRecordDTO;
import com.mzl.flower.entity.wallet.WalletBillRecordDO;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author @TaoJie
 * @since 2024-10-22
 */
public interface WalletBillRecordService extends IService<WalletBillRecordDO> {
 
    void create(CreateWalletBillRecordDTO dto);
 
    void updateTransferStatus(String transferId);
}