lxw
2022-09-09 7b56235f5606477ab988d480ade18852718e901e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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,"");
    }
}