zxl
2026-03-25 8819762ad58f77e606431fca4072c19e542e6055
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.tievd.jyz.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.tievd.jyz.entity.OilStatis;
import com.tievd.jyz.mapper.OilStaticMapper;
import com.tievd.jyz.service.IOilStaticService;
import org.springframework.stereotype.Service;
 
/**
 * OilStatis
 * @author      cube
 * @since       2023-02-27
 * @version     V2.0.0
 */
@Service
public class OilStaticServiceImpl extends ServiceImpl<OilStaticMapper, OilStatis> implements IOilStaticService {
 
}