package org.jeecg.modules.eam.service;
|
|
import org.jeecg.common.api.vo.CommonGenericTree;
|
import org.jeecg.modules.eam.entity.EquipmentStructure;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
|
/**
|
* @Description: mom_eam_equipment_structure
|
* @Author: jeecg-boot
|
* @Date: 2023-03-30
|
* @Version: V1.0
|
*/
|
public interface IEquipmentStructureService extends IService<EquipmentStructure> {
|
|
public List<CommonGenericTree> loadTree(String equipmentId);
|
}
|