You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.engine.organization.webservice;
|
|
|
|
|
|
|
|
import com.engine.organization.entity.company.po.CompPO;
|
|
|
|
|
|
|
|
import javax.jws.WebMethod;
|
|
|
|
import javax.jws.WebService;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @description: TODO
|
|
|
|
* @author:dxfeng
|
|
|
|
* @createTime: 2022/05/23
|
|
|
|
* @version: 1.0
|
|
|
|
*/
|
|
|
|
@WebService
|
|
|
|
public interface CustomBrowserService {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 公司/分部 树形列表
|
|
|
|
* 只获取未删除且启用的数据
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
@WebMethod(
|
|
|
|
operationName = "getCompTreeList",
|
|
|
|
action = "com.engine.organization.webservice.CustomBrowserService.getCompTreeList"
|
|
|
|
)
|
|
|
|
List<CompPO> getCompTreeList();
|
|
|
|
}
|