zhangherong
2025-05-09 f9a9fb9090c2e9e1a4e00374d48181efe2463a56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.jeecg.modules.mdcJc.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.mdcJc.dto.MesRcJobreport;
import org.jeecg.modules.mdcJc.entity.MdcJcRcJobreport;
 
import java.util.List;
 
/**
 * @Description: 设备集成mes合格率表
 * @Author: Lius
 * @Date: 2025-04-14
 */
public interface MdcJcRcJobreportMapper extends BaseMapper<MdcJcRcJobreport> {
 
    Integer selectTotalProcessCount(@Param("equipmentId") String equipmentId, @Param("date") String validDate);
 
    Integer selectTotalPassCount(@Param("equipmentId") String equipmentId, @Param("date") String validDate);
 
    MesRcJobreport findRateByMonth(@Param("equipmentId") String equipmentId, @Param("month") String month);
}