zhoushihao
2024-06-24 6acde3b011f5f1b843c6f097baf64fbd9b574b23
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
package com.mes.downglassinfo.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.downglassinfo.entity.DownGlassInfo;
import com.mes.downworkstation.entity.dto.DownGlassInfoDTO;
 
import java.util.List;
 
public interface DownGlassInfoService extends IService<DownGlassInfo> {
 
 
    /**
     * @param flowCardId
     * @return // 根据流程卡号查询最大序号
     */
    Integer getMaxSequenceByFlowCardId(String flowCardId);
 
    /**
     * @param downGlassInfo 插入下片信息
     */
    void insertDownGlassInfo(DownGlassInfo downGlassInfo);
 
 
    DownGlassInfoDTO queryDownGlassMaxLayer(String flowCardId);
 
    Integer queryMaxSequence(String flowCardId, int layer);
 
    List<DownGlassInfoDTO> queryWorkStationNotIn();
}