| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.limslaboratory.pojo.Inspection; |
| | | import com.yuanchu.limslaboratory.pojo.vo.InspectionVo; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public interface InspectionMapper extends BaseMapper<Inspection> { |
| | | |
| | | |
| | | /** |
| | | * 查询检验申请单列表 |
| | | * @param page |
| | |
| | | * @return |
| | | */ |
| | | IPage<Map<String, Object>> selectInspectsList(Page<Object> page, String message); |
| | | |
| | | //计算已检验检验单数量 |
| | | Integer seleCountIns(); |
| | | |
| | | //计算未检验的数量 |
| | | Integer seleCountUnIns(); |
| | | } |
| | | |