lyh
2025-06-30 fe65bb1d764ca9d32647818240bb551db06e0b7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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<RepairStandardCategory> {
 
    public List<CommonGenericTree> loadTree();
}