| | |
| | | package com.yuanchu.mom.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.yuanchu.mom.mybatis_config.MyBaseMapper; |
| | | import com.yuanchu.mom.pojo.InspectionItem; |
| | | import com.yuanchu.mom.pojo.dto.InspectionItemDto; |
| | |
| | | * @author 江苏鵷雏网络科技有限公司 |
| | | * @since 2023-08-01 |
| | | */ |
| | | public interface InspectionItemMapper extends MyBaseMapper<InspectionItem> { |
| | | public interface InspectionItemMapper extends BaseMapper<InspectionItem> { |
| | | |
| | | List<InspectionItemDto> selectInspectionItem(Integer finishInspectId); |
| | | |
| | | //获取该类型检验单id下的检验项目结果集 |
| | | List<Integer> getResult(Integer id, int type); |
| | | |
| | | List<InspectionItemDto> selectInspectionItem(Integer id, Integer type); |
| | | |
| | | |
| | | } |