feat:台站相关接口修改

This commit is contained in:
qiaoqinzheng 2023-05-11 15:09:30 +08:00
parent db25ad7329
commit d1013648ed

View File

@ -29,19 +29,19 @@ public interface IGardsStationsService extends IService<GardsStations> {
* 新增台站信息接口
* @param gardsStations
*/
void create(GardsStations gardsStations);
Result create(GardsStations gardsStations);
/**
* 修改台站信息接口
* @param gardsStations
*/
void update(GardsStations gardsStations);
Result update(GardsStations gardsStations);
/**
* 删除台站信息接口
* @param stationId
*/
void deleteById(Integer stationId);
Result deleteById(Integer stationId);
/**
* 查询全部台站数据接口