package com.whyc.service;
|
|
import com.whyc.dto.Response;
|
import com.whyc.mapper.StationInfoMapper;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
@Service
|
public class StationInfoService {
|
@Autowired(required = false)
|
private StationInfoMapper mapper;
|
//添加台站
|
public Response addStation(String stationName1, String stationName2, String stationName3) {
|
|
return new Response().set(1,true,"");
|
}
|
}
|