| | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.mom.pojo.FinishedInspect; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.yuanchu.mom.pojo.FinishedInspect; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public interface FinishedInspectMapper extends BaseMapper<FinishedInspect> { |
| | | |
| | | IPage<Map<String, Object>> selectFinishedInspectPage(Page<Object> page, Integer inspectResult, String inspectDate, String inspectUsername); |
| | | //分页查询成品检验 |
| | | IPage<Map<String, Object>> selectFinishedInspectPage(Page<Object> page, Integer result, String material); |
| | | |
| | | //计算成品或者过程检验在某一个时间段的合格数 |
| | | Integer selCountFin(String begin, String end, int type,int result); |
| | | //新增检验单-->根据订单号选择产品信息 |
| | | List<Map<String, Object>> chooseMater(String orderNumber); |
| | | |
| | | //计算月产量 |
| | | Long seAllCount(String begin, String end, int type); |
| | | //根据检验单id查询成品检验单详情 |
| | | List<Map<String, Object>> selectFinishInspectsListById(Integer id); |
| | | |
| | | //清空检验状态 |
| | | void updById(Integer rawInspectId); |
| | | } |