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.
20 lines
436 B
Java
20 lines
436 B
Java
package com.engine.organization.service.impl;
|
|
|
|
import com.engine.core.impl.Service;
|
|
import com.engine.organization.service.OrgVirtualService;
|
|
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @Author liang.cheng
|
|
* @Date 2023/6/27 3:45 PM
|
|
* @Version 1.0
|
|
*/
|
|
public class OrgVirtualServiceImpl extends Service implements OrgVirtualService {
|
|
|
|
@Override
|
|
public Map<String, Object> listPage(Map<String, Object> params) {
|
|
return null;
|
|
}
|
|
}
|