智慧农业后台管理
Administrator
2022-07-13 3df8757ade3bdef3b5a142c846680102589260bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 
package org.springblade.modules.farm.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.modules.farm.entity.FarmPaper;
import org.springblade.modules.farm.vo.FarmPaperVO;
 
import java.util.List;
 
/**
 * 农场检测报告/证书服务类
 * @since 2022-05-10
 * @author zhongrj
 */
public interface FarmPaperService extends IService<FarmPaper> {
 
    /**
     * 自定义分页
     *
     * @param page
     * @param farmPaper
     * @return
     */
    IPage<FarmPaperVO> selectFarmPaperPage(IPage<FarmPaperVO> page, FarmPaperVO farmPaper);
 
 
    /**
     * 查询相关检测信息
     * @param deptId
     * @return
     */
    List<FarmPaperVO> getFarmPaperList(String deptId);
}