| 1234567891011121314151617181920212223242526272829303132 |
- package com.xintong.visualinspection.service;
- import java.util.List;
- import com.xintong.visualinspection.bean.CheckOther;
- public interface CheckOtherService {
- /**添加稽查记录
- * @param checkOther
- */
- void insert(CheckOther checkOther);
- /**根据id删除稽查记录
- * @param checkOther
- */
- void delete(Long id);
- /**根据部门id获取稽查记录
- * @param checkOther
- * @return
- */
- List<CheckOther> getCheckByDeptId(CheckOther checkOther);
- /**根据id获取稽查记录
- * @param id
- */
- CheckOther getCheckById(Long id);
- /**根据id修改稽查记录
- * @param id
- */
- void update(CheckOther checkOther);
- }
|