zhoushihao
2024-06-27 31553fc8b224d70f4415e9edf4098587dea44e3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.mes.pp.service;
 
import com.mes.pp.entity.ReportingWork;
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.pp.entity.request.AwaitingRepair;
import com.mes.pp.entity.request.Reportingdamage;
 
import java.util.List;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author wu
 * @since 2024-06-26
 */
public interface ReportingWorkService extends IService<ReportingWork> {
 
     /**
      * 获取顶部扇形图破损加工数量,传入参数:工序,设备,加工时间
      *
      * @return
      */
     List<Reportingdamage> selectDamage(Reportingdamage reportingdamage);
     /**
      * 获取破损未补片的列表
      *
      * @return
      */
     List<AwaitingRepair> selectAwaitingRepair();
 
}