zhibing.pu
2024-07-25 79fc712ed025069c1d21de230bdc95c74910288c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.stylefeng.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.stylefeng.guns.modular.system.dao.SysOvertimeMapper;
import com.stylefeng.guns.modular.system.model.SysOvertime;
import com.stylefeng.guns.modular.system.service.ISysOvertimeService;
import org.springframework.stereotype.Service;
 
/**
 * @author zhibing.pu
 * @Date 2024/7/17 10:18
 */
@Service
public class SysOvertimeServiceImpl extends ServiceImpl<SysOvertimeMapper, SysOvertime> implements ISysOvertimeService {
}