1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.chinaztt.mes.production.service;
|
| import com.chinaztt.mes.production.dto.EmsMachineYieldDTO;
| import com.chinaztt.mes.production.dto.EmsWorkshopAndMachineDTO;
|
| /**
| * @Description:
| * @Author: shz
| * @Date: 2023/4/20 16:21
| */
| public interface EmsHandoverService {
| EmsWorkshopAndMachineDTO getWorkshopAndMachine();
|
| EmsMachineYieldDTO getMachineYield(String machineCode, String beginDate, String endDate, String timeParticleCode);
| }
|
|