| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.limslaboratory.pojo.RawMaterial; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.limslaboratory.pojo.vo.InspectionVo; |
| | | |
| | | import java.text.ParseException; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.Objects; |
| | | |
| | |
| | | */ |
| | | public interface RawMaterialService extends IService<RawMaterial> { |
| | | |
| | | IPage<RawMaterial> selectRawMaterial(String materialCoding, String materialName, String condition, String createTime, Page<Objects> page); |
| | | IPage<RawMaterial> selectRawMaterial(String materialCoding, String materialName, Integer condition, String createTime, Page<Objects> page); |
| | | |
| | | /** |
| | | * 查询原材料检验 |
| | | * |
| | | * @return |
| | | */ |
| | | List<RawMaterial> selectRawmaAll(); |
| | | |
| | | /** |
| | | * 选择原材料报检 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | InspectionVo selectRawmaById(Integer id, String startTime, String endTime) throws ParseException; |
| | | } |