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);
|
}
|