CheckOtherService.java 642 B

1234567891011121314151617181920212223242526272829303132
  1. package com.xintong.visualinspection.service;
  2. import java.util.List;
  3. import com.xintong.visualinspection.bean.CheckOther;
  4. public interface CheckOtherService {
  5. /**添加稽查记录
  6. * @param checkOther
  7. */
  8. void insert(CheckOther checkOther);
  9. /**根据id删除稽查记录
  10. * @param checkOther
  11. */
  12. void delete(Long id);
  13. /**根据部门id获取稽查记录
  14. * @param checkOther
  15. * @return
  16. */
  17. List<CheckOther> getCheckByDeptId(CheckOther checkOther);
  18. /**根据id获取稽查记录
  19. * @param id
  20. */
  21. CheckOther getCheckById(Long id);
  22. /**根据id修改稽查记录
  23. * @param id
  24. */
  25. void update(CheckOther checkOther);
  26. }