IBusJcebGjsfxService.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package com.railway.business.catenary.service;
  2. import com.railway.business.catenary.domain.BusJcbQmjcjl;
  3. import com.railway.business.catenary.domain.BusJcebGjsfx;
  4. import java.util.List;
  5. /**
  6. * 检测表-关节式分相
  7. * @author whh
  8. * @date 2021/10/19
  9. */
  10. public interface IBusJcebGjsfxService{
  11. /**
  12. * @Description: 新增
  13. */
  14. int create(BusJcebGjsfx busJcebGjsfx);
  15. /**
  16. * @Description: 删除
  17. */
  18. int delete(String[] ids);
  19. /**
  20. * @Description: 更新
  21. */
  22. int update(BusJcebGjsfx busJcebGjsfx);
  23. /**
  24. * @Description: 获取单个
  25. */
  26. BusJcebGjsfx getInfo(String id);
  27. /**
  28. * @Description: 查询列表
  29. */
  30. List<BusJcebGjsfx> getList(BusJcebGjsfx busJcebGjsfx);
  31. /**
  32. * 提交
  33. * @param busJcebGjsfx
  34. * @return
  35. */
  36. int submit(BusJcebGjsfx busJcebGjsfx);
  37. /**
  38. * 退回
  39. * @param busJcebGjsfx
  40. * @return
  41. */
  42. int reject(BusJcebGjsfx busJcebGjsfx);
  43. /**
  44. * 确认
  45. * @param busJcebGjsfx
  46. * @return
  47. */
  48. int confirm(BusJcebGjsfx busJcebGjsfx);
  49. }