1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| 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<RawInspect> {
|
| List<RawInspect> selectRawInspectsByLimit(int pageSize, int countSize, String formTime, String createTime,int insState,int judgeState);
|
|
| }
|
|