IBusJcebLbjghjlService.java 1.1 KB

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