wu
2024-05-06 638a2f5064ca376e7c4e28d3b6a6718a4563a19d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.mes.glassinfo.service;
 
import com.mes.glassinfo.entity.GlassInfo;
import com.baomidou.mybatisplus.extension.service.IService;
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);
}