wuyouming666
2024-04-23 a6b6a0fe63555a44682f2e1f9bc65a668c84a7e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.mes.downglassinfo.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.downglassinfo.entity.DownGlassInfo;
 
public interface DownGlassInfoService extends IService<DownGlassInfo> {
 
 
    Integer getMaxSequenceByFlowCardId(String flowCardId);
 
    void insertDownGlassInfo(DownGlassInfo downGlassInfo);
 
 
}