package com.yuanchu.mom.mapper; import com.yuanchu.mom.pojo.RawInspect; import com.baomidou.mybatisplus.core.mapper.BaseMapper; 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 { List selectRawInspectsByLimit(int pageSize, int countSize, String formTime, String createTime,int insState,int judgeState); }