Newer
Older
huludao / src / main / java / com / newfiber / api / pc / service / PatrolManageDicService.java
@新烽开发者 新烽开发者 on 22 Jul 799 bytes init
package com.newfiber.api.pc.service;


import com.baomidou.mybatisplus.service.IService;
import com.github.pagehelper.PageInfo;
import com.newfiber.api.pc.model.River.PatrolManageDic;

import java.util.List;

/**
 * patrolManageDic 业务层
 *
 * @author luzhan
 * @date 2021-07-16
 */
public interface PatrolManageDicService extends IService<PatrolManageDic> {

    /**
    * patrolManageDic 分页列表
    * @param searchStr
    * @param pageNo
    * @param pageSize
    * @return
    */
    PageInfo<PatrolManageDic> listForPage(String searchStr,String patrolType,String source, Integer pageNo, Integer pageSize);

    List<PatrolManageDic> getListByPatrolType(Integer patrolType);

    /**
     * 获取任务状态
     * @return
     */
    List<PatrolManageDic> getListByPatrolState();
}