StationService.java
468 Bytes
package com.huaheng.pc.config.station.service;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.huaheng.pc.config.station.domain.Station;
import com.huaheng.pc.config.station.mapper.StationMapper;
/**
* Created by Enzo Cotter on 2019/10/11.
*/
@Service
public class StationService extends ServiceImpl<StationMapper, Station> {
}