| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package com.railway.business.catenary.service;
- import com.railway.business.catenary.domain.BusJcbQmjcjl;
- import com.railway.business.catenary.domain.BusJcebGjsfx;
- import java.util.List;
- /**
- * 检测表-关节式分相
- * @author whh
- * @date 2021/10/19
- */
- public interface IBusJcebGjsfxService{
- /**
- * @Description: 新增
- */
- int create(BusJcebGjsfx busJcebGjsfx);
- /**
- * @Description: 删除
- */
- int delete(String[] ids);
- /**
- * @Description: 更新
- */
- int update(BusJcebGjsfx busJcebGjsfx);
- /**
- * @Description: 获取单个
- */
- BusJcebGjsfx getInfo(String id);
- /**
- * @Description: 查询列表
- */
- List<BusJcebGjsfx> getList(BusJcebGjsfx busJcebGjsfx);
- /**
- * 提交
- * @param busJcebGjsfx
- * @return
- */
- int submit(BusJcebGjsfx busJcebGjsfx);
- /**
- * 退回
- * @param busJcebGjsfx
- * @return
- */
- int reject(BusJcebGjsfx busJcebGjsfx);
- /**
- * 确认
- * @param busJcebGjsfx
- * @return
- */
- int confirm(BusJcebGjsfx busJcebGjsfx);
- }
|