ISecScheduledService.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package com.railway.business.safetool.service;
  2. import com.railway.business.safetool.domain.SecScheduled;
  3. import com.railway.business.safetool.domain.vo.SecScheduledCountVo;
  4. import com.railway.business.safetool.domain.vo.SecScheduledListParmVo;
  5. import com.railway.business.safetool.domain.vo.SecScheduledToolListVo;
  6. import com.railway.business.safetool.domain.vo.SecScheduledToolVo;
  7. import java.util.List;
  8. /**
  9. * 安全工具计划表
  10. * @author lijie
  11. * @date 2021/12/04
  12. */
  13. public interface ISecScheduledService{
  14. /**
  15. * 新增
  16. */
  17. Long create(SecScheduledToolListVo secScheduled) throws Exception;
  18. /**
  19. * 删除
  20. */
  21. int delete(String[] ids);
  22. /**
  23. * 更新
  24. */
  25. int update(SecScheduled secScheduled);
  26. /**
  27. * 获取单个
  28. */
  29. SecScheduledToolListVo getInfo(String id);
  30. /**
  31. * 查询列表
  32. */
  33. List<SecScheduledCountVo> getList(SecScheduledListParmVo secScheduled);
  34. int delTools(SecScheduledToolVo secScheduled) throws Exception ;
  35. int addTools(SecScheduledToolVo toolsVo) throws Exception;
  36. }