zss
2023-08-15 56f89b4a45a561ff017ffd1e611e542130d046a0
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
package com.yuanchu.mom.mapper;
 
import com.yuanchu.mom.pojo.RawInspect;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
import java.time.LocalDate;
import java.util.List;
 
/**
* @author Administrator
* @description 针对表【raw_inspect(原材料申请表)】的数据库操作Mapper
* @createDate 2023-07-31 14:43:15
* @Entity com.yuanchu.mom.pojo.RawInspect
*/
public interface RawInspectMapper extends BaseMapper<RawInspect> {
 
    List<RawInspect> selectRawInspectsByLimit(int pageSize, int countSize, String formTime, String createTime,int insState,int judgeState);
 
 
    //计算原材料在某个范围内的合格或不合格数量
    Integer selCountRaw(String begin, String end,Integer judgeState);
 
    //计算月总产量
    Long seAllCount(String begin, String end);
}