1
昨天 de3b9f5658c4a16e1d20764089db47c24e3f9c81
1
2
3
4
5
6
7
8
9
10
11
12
package com.vincent.rsf.schedule.manager.service.impl;
 
import com.vincent.rsf.schedule.manager.mapper.BasStationTypeMapper;
import com.vincent.rsf.schedule.manager.entity.BasStationType;
import com.vincent.rsf.schedule.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 {
 
}