wuyouming666
2024-04-23 e8d821b6e3dd2c512ffd3a7261aeb5ae349a6ebc
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
package com.mes.downworkstation.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.downworkstation.entity.DownWorkstation;
 
import java.util.List;
 
/**
 * <p>
 * 服务类
 * </p>
 *
 * @author zhoush
 * @since 2024-03-27
 */
public interface DownWorkstationService extends IService<DownWorkstation> {
 
    List<DownWorkstation> getoneDownWorkstations(int startId, int endId);
 
    int getTotalQuantity(int workstationId);
 
    int getRacksNumber(int workstationId);
 
    void clearFlowCardId(int workstationId);
 
    void updateracksnumber(String flowCardId, int racksnumber);
 
 
    int updateFlowCardIdAndCount(String flowCardId, int glassInfoCount, int workstationId);
    void insertdownglassinfo();
 
}