| | |
| | | package com.yuanchu.mom.mapper; |
| | | |
| | | import com.yuanchu.mom.dto.ProductResultDto2; |
| | | import com.yuanchu.mom.pojo.InsProduct; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author Administrator |
| | |
| | | */ |
| | | public interface InsProductMapper extends BaseMapper<InsProduct> { |
| | | |
| | | int selectOrderManDay(Integer sampleId); |
| | | int selectOrderManDay(Integer orderId); |
| | | |
| | | Map<String, String> selectUserById(Integer userId); |
| | | |
| | | List<ProductResultDto2> getProductAndResult(Integer sampleId); |
| | | |
| | | } |
| | | |