wuyouming666
2024-04-29 6f39f26611a67e6c3edf561337490a270444c256
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.mes.downglassinfo.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.downglassinfo.entity.DownGlassInfo;
 
public interface DownGlassInfoService extends IService<DownGlassInfo> {
 
 
    /**
     * @param flowCardId
     * @return    // 根据流程卡号查询最大序号
     */
    Integer getMaxSequenceByFlowCardId(String flowCardId);
 
    /**
     * @param downGlassInfo
     * 插入下片信息
     */
    void insertDownGlassInfo(DownGlassInfo downGlassInfo);
 
 
}