1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package org.jeecg.modules.mdcJc.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import org.jeecg.modules.mdcJc.dto.MesRcJobreport;
|
| import java.util.List;
|
| /**
| * @Author: Lius
| * @CreateTime: 2025-04-14
| * @Description:
| */
| public interface MesRcJobreportService {
|
| List<MesRcJobreport> findPartProcessInfo(String date, List<String> equipmentIdList);
| }
|
|