skyouc
4 天以前 4bf0426314e8eb19b632861603206c4c288647bf
1
2
3
4
5
6
7
8
9
10
11
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.BasStationDevice;
import com.zy.asrs.mapper.BasStationDeviceMapper;
import com.zy.asrs.service.BasStationDeviceService;
import org.springframework.stereotype.Service;
 
@Service
public class BasStationDeviceServiceImpl extends ServiceImpl<BasStationDeviceMapper, BasStationDevice> implements BasStationDeviceService {
}