package com.mes.glassinfo.service; import com.mes.glassinfo.entity.GlassInfo; import com.github.yulichang.base.MPJBaseService; import java.util.List; /** *

* 服务类 *

* * @author wu * @since 2024-04-29 */ public interface GlassInfoService extends MPJBaseService { /** * 查询小片表 * @return List */ List selectGlassInfo(String engineeringId); /** * 保存小片表 */ void saveGlassInfo(List glassinfo); }