tjx
2 天以前 88a106141826b817a6d4b8e41c48160cef011f5e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.hk.NumericalCollection.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.hk.NumericalCollection.entity.Device;
import com.hk.NumericalCollection.mapper.DeviceMapper;
import com.hk.NumericalCollection.service.DeviceService;
import org.springframework.stereotype.Service;
 
/**
* @author Administrator
* @description 针对表【DEVICE(数采设备)】的数据库操作Service实现
* @createDate 2024-09-27 09:56:10
*/
@Service
public class DeviceServiceImpl extends ServiceImpl<DeviceMapper, Device>
    implements DeviceService{
 
}