package org.jeecg.modules.eam.service; import org.jeecg.common.api.vo.CommonGenericTree; import org.jeecg.modules.eam.entity.RepairStandardCategory; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; /** * @Description: mom_eam_repair_standard_category * @Author: jeecg-boot * @Date: 2024-07-08 * @Version: V1.0 */ public interface IRepairStandardCategoryService extends IService { public List loadTree(); }