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.
31 lines
917 B
Java
31 lines
917 B
Java
3 years ago
|
package com.engine.organization.wrapper;
|
||
|
|
||
|
import com.engine.common.util.ServiceUtil;
|
||
|
import com.engine.core.impl.Service;
|
||
|
import com.engine.organization.entity.scheme.bo.SchemeBO;
|
||
|
import com.engine.organization.entity.scheme.dto.SchemeListDTO;
|
||
|
import com.engine.organization.entity.scheme.param.SchemeSearchParam;
|
||
|
import com.engine.organization.entity.scheme.po.SchemePO;
|
||
|
import com.engine.organization.service.SchemeService;
|
||
|
import com.engine.organization.service.impl.SchemeServiceImpl;
|
||
|
import com.engine.organization.util.page.PageInfo;
|
||
|
import com.engine.organization.util.response.ReturnResult;
|
||
|
import weaver.hrm.User;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @Author weaver_cl
|
||
|
* @Description: TODO
|
||
|
* @Date 2022/4/26
|
||
|
* @Version V1.0
|
||
|
**/
|
||
|
public class SchemeWrapper extends Service {
|
||
|
|
||
|
private SchemeService getSchemeService(User user) {
|
||
|
return ServiceUtil.getService(SchemeServiceImpl.class,user);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|