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