zj
2025-01-06 0e7b38c2b3af72ea2a7f8a2fcbaad4d78e2c1977
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.gear.finance.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.gear.finance.mapper.FinanceMoneyLogMapper;
import com.gear.finance.domain.FinanceMoneyLog;
import com.gear.finance.service.IFinanceMoneyLogService;
 
/**
 * 资金流水Service业务层处理
 *
 * @author czx
 * @date 2023-11-16
 */
@Service
public class FinanceMoneyLogServiceImpl extends ServiceImpl<FinanceMoneyLogMapper, FinanceMoneyLog> implements IFinanceMoneyLogService {
    @Autowired
    private FinanceMoneyLogMapper financeMoneyLogMapper;
}