1
6 小时以前 e711c834aec2293c53b07efe53e81e3573c289b6
1
2
3
4
5
6
7
8
9
10
11
12
package com.vincent.rsf.server.manager.service.impl;
 
import com.vincent.rsf.server.manager.mapper.BasStationTypeMapper;
import com.vincent.rsf.server.manager.entity.BasStationType;
import com.vincent.rsf.server.manager.service.BasStationTypeService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("basStationTypeService")
public class BasStationTypeServiceImpl extends ServiceImpl<BasStationTypeMapper, BasStationType> implements BasStationTypeService {
 
}