1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.tievd.jyz.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.tievd.jyz.entity.DepartLabel;
| import org.springframework.web.bind.annotation.RequestParam;
|
| import java.util.List;
| import java.util.Map;
|
| public interface IDepartLabelService extends IService<DepartLabel> {
|
| List<Map<String, Object>> queryDepartLabelList(String labelName, String parentCode, String parentId);
|
| List<String> queryAllLabelNames(String parentCode,
| String parentId);
|
| List<Map<String, Object>> queryOrgOilCount(String orgCode, String startTime, String endTime);
| }
|
|