wu
2024-12-23 b9b44b51b201e2f5a9a1f3665c7fb76b5690f9af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.mes.hollow.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.hollow.entity.HollowGlassOutRelationInfo;
 
/**
 * (HollowGlassOutRelationInfo)表服务接口
 *
 * @author makejava
 * @since 2024-11-30 13:57:29
 */
public interface HollowGlassOutRelationInfoService extends IService<HollowGlassOutRelationInfo> {
 
    HollowGlassOutRelationInfo receiveTask(String flowCardId, int cell, int totalPairQuantity);
 
    HollowGlassOutRelationInfo forceOutGlass(String flowCardId, int cell, int totalPairQuantity);
 
    Boolean dispatchHollowSwitch(Boolean flag);
}