12345678910111213141516171819202122232425262728293031 |
- package com.usky.fire.service;
- import com.usky.common.core.bean.CommonPage;
- import com.usky.fire.domain.PatrolInspectionPersonnel;
- import com.usky.common.mybatis.core.CrudService;
- import com.usky.fire.service.vo.PatrolInspectionAreaVo;
- import com.usky.fire.service.vo.PatrolInspectionPersonnelVo;
- import java.util.List;
- public interface PatrolInspectionPersonnelService extends CrudService<PatrolInspectionPersonnel> {
- void addPatrolInspectionPersonnel(PatrolInspectionPersonnel patrolInspectionPersonnel);
- void updatePatrolInspectionPersonnel(PatrolInspectionPersonnel patrolInspectionPersonnel);
- void delPatrolInspectionPersonnel(Integer id);
- CommonPage<PatrolInspectionPersonnelVo> patrolInspectionPersonnelList(Integer areaId,Integer pageNum, Integer pageSize,Integer id);
- List<PatrolInspectionAreaVo> personnelLeftList();
- }
|