57 lines
1.1 KiB
Plaintext
57 lines
1.1 KiB
Plaintext
package com.securityControl.system.service;
|
|
|
|
|
|
import com.securityControl.system.domain.vo.SelectedEntity;
|
|
|
|
import java.util.List;
|
|
|
|
public interface SysSelectedService {
|
|
/**
|
|
* 查询组织机构下拉选
|
|
*
|
|
* @return
|
|
*/
|
|
List<SelectedEntity> getOrgSelected(String code);
|
|
|
|
/**
|
|
* 查询角色下拉选
|
|
*
|
|
* @param param
|
|
* @return
|
|
*/
|
|
List<SelectedEntity> getRoleSelected(String param);
|
|
|
|
/**
|
|
* 查询菜单下拉选
|
|
*
|
|
* @param param
|
|
* @return
|
|
*/
|
|
List<SelectedEntity> getMenuSelected(String param);
|
|
|
|
/**
|
|
* 查询设备下拉选
|
|
*
|
|
* @param param
|
|
* @return
|
|
*/
|
|
List<SelectedEntity> getDeviceTypeSelected(String param);
|
|
|
|
/**
|
|
* 字典下拉选
|
|
*
|
|
* @param param
|
|
* @return
|
|
*/
|
|
List<SelectedEntity> getDictSelected(String param);
|
|
|
|
/**
|
|
* @return java.util.List<com.securityControl.system.domain.vo.SelectedEntity>
|
|
* @author cw chen
|
|
* @description 工程/标段工程下拉选
|
|
* @Param param
|
|
* @date 2023-01-12 14:57
|
|
*/
|
|
List<SelectedEntity> getProSelected(String param);
|
|
}
|