| | |
| | | import com.yuanchu.mom.pojo.FinishedInspect; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | public interface FinishedInspectMapper extends BaseMapper<FinishedInspect> { |
| | | |
| | | IPage<Map<String, Object>> selectFinishedInspectPage(Page<Object> page, Integer inspectResult, String inspectDate, String inspectUsername); |
| | | |
| | | //计算成品或者过程检验在某一个时间段的合格数 |
| | | Integer selCountFin(String begin, String end, int type,int result); |
| | | |
| | | //计算月产量 |
| | | Long seAllCount(String begin, String end, int type); |
| | | } |