| | |
| | | |
| | | 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; |
| | |
| | | */ |
| | | public interface ReportingWorkService extends IService<ReportingWork> { |
| | | |
| | | //获取顶部扇形图破损加工数量 |
| | | /** |
| | | * 获取顶部扇形图破损加工数量,传入参数:工序,设备,加工时间 |
| | | * |
| | | * @return |
| | | */ |
| | | List<Reportingdamage> selectDamage(Reportingdamage reportingdamage); |
| | | /** |
| | | * 获取破损未补片的列表 |
| | | * |
| | | * @return |
| | | */ |
| | | List<AwaitingRepair> selectAwaitingRepair(); |
| | | |
| | | } |