luofl
2025-02-27 2bbe4eac73a88e806442e79f460ae8940c2f5228
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.account.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.account.api.model.BalanceChangeRecordCopy;
import com.ruoyi.account.mapper.BalanceChangeRecordCopyMapper;
import com.ruoyi.account.service.BalanceChangeRecordCopyService;
import org.springframework.stereotype.Service;
 
@Service
public class BalanceChangeRecordCopyServiceImpl extends ServiceImpl<BalanceChangeRecordCopyMapper, BalanceChangeRecordCopy> implements BalanceChangeRecordCopyService {
}