Lius
2025-04-15 6a5cb9b11c95fbde3e56a55ea5379b633651d2ad
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);
}