Pu Zhibing
2025-03-06 1b81b84edaeea9b200c622e4a34c49b4b1aaac92
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.other.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.other.api.domain.Operator;
import com.ruoyi.other.mapper.OperatorMapper;
import com.ruoyi.other.service.OperatorService;
import org.springframework.stereotype.Service;
 
/**
 * @author zhibing.pu
 * @Date 2025/1/22 15:09
 */
@Service
public class OperatorServiceImpl extends ServiceImpl<OperatorMapper, Operator> implements OperatorService {
}