puzhibing
2023-02-25 4ba348b700fd7f461f754a283eaeeba3fc9ff36c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.supersavedriving.driver.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.supersavedriving.driver.modular.system.dao.RevenueMapper;
import com.supersavedriving.driver.modular.system.model.Revenue;
import com.supersavedriving.driver.modular.system.service.IRevenueService;
import org.springframework.stereotype.Service;
 
/**
* 收入记录
* @author pzb
* @Date 2023/2/25 16:12
*/
@Service
public class RevenueServiceImpl extends ServiceImpl<RevenueMapper, Revenue> implements IRevenueService {
}