weaver-hrm-organization/src/com/engine/organization/wrapper/CompWrapper.java

33 lines
812 B
Java
Raw Normal View History

2022-05-17 13:34:00 +08:00
package com.engine.organization.wrapper;
import com.engine.common.util.ServiceUtil;
import com.engine.core.impl.Service;
2022-05-17 16:36:53 +08:00
import com.engine.organization.entity.comp.param.CompSearchParam;
2022-05-17 13:34:00 +08:00
import com.engine.organization.service.CompService;
import com.engine.organization.service.impl.CompServiceImpl;
import weaver.hrm.User;
import java.util.Map;
/**
* @description: TODO
* @author:dxfeng
* @createTime: 2022/05/16
* @version: 1.0
*/
public class CompWrapper extends Service {
private CompService getCompService(User user) {
return ServiceUtil.getService(CompServiceImpl.class, user);
}
/**
* 列表
*
* @param params
* @return
*/
2022-05-17 16:36:53 +08:00
public Map<String, Object> listPage(CompSearchParam params) {
2022-05-17 13:34:00 +08:00
return getCompService(user).listPage(params);
}
}