zhangherong
2025-06-12 6abc1a2fb78003bb1ea6283d813b8ccc0bcd9b2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package org.jeecg.modules.base.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.base.entity.UnitCategory;
 
import java.util.List;
 
public interface IUnitCategoryService extends IService<UnitCategory> {
    /**
     * 查询计量单位分类树形列表
     * @return
     */
    List<UnitCategory> getTreeList();
 
    public void initFristUnitCategory();
 
    /**
     * 查询计量单位树形列表
     * @return
     */
    List<UnitCategory> getUnitTreeList();
 
    /**
     * 根据计量单位查询该计量单位下的所有计量单位
     * @return
     */
    List<UnitCategory> getList(String id);
 
}