cuijian
2023-08-19 bdd0875d4b13a3f1ef472f64d4b6a95e0ef64b22
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
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();
 
    /**
     * 查询计量单位树形列表
     * @return
     */
    List<UnitCategory> getUnitTreeList();
 
    /**
     * 根据计量单位查询该计量单位下的所有计量单位
     * @return
     */
    List<UnitCategory> getList(String id);
 
}