| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.railway.business.catenary.service;
- import com.railway.business.catenary.domain.BusStation;
- import java.util.List;
- /**
- * primary key (station_id) using
- *
- * @author author
- * @date 2021/10/16
- */
- public interface IBusStationService {
- /**
- * 新增
- */
- int create(BusStation busStation);
- /**
- * 删除
- */
- int delete(String[] stationIds);
- /**
- * 更新
- */
- int update(BusStation busStation);
- /**
- * 获取单个
- */
- BusStation getInfo(String stationId);
- /**
- * 查询列表
- */
- List<BusStation> getList(BusStation busStation);
- }
|