1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.mes.glassinfo.service;
|
| import com.mes.glassinfo.entity.GlassInfo;
| import com.github.yulichang.base.MPJBaseService;
| import java.util.List;
|
| /**
| * <p>
| * 服务类
| * </p>
| *
| * @author wu
| * @since 2024-04-29
| */
| public interface GlassInfoService extends MPJBaseService<GlassInfo> {
|
| List<GlassInfo> selectGlassInfo(String engineeringId);
|
| void saveGlassInfo(List<GlassInfo> glassinfo);
| }
|
|