package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.dto.PersGroupDto; import cn.com.goldenwater.dcproj.model.AttUserBase; import cn.com.goldenwater.dcproj.param.AttUserBaseParam; import cn.com.goldenwater.dcproj.param.UserRoleParam; import com.github.pagehelper.PageInfo; import java.util.ArrayList; import java.util.List; /** * @author lune * @date 2019-2-19 */ public interface AttUserBaseService extends CrudService { // ------------------------- 自定方法 ------------------------- void insertUser(AttUserBase attUserBase, ArrayList userRoleParams, UserRoleParam param); void updateUser(AttUserBase attUserBase, ArrayList userRoleParams, UserRoleParam param); List getGroupByPersid(String persid,String ptype,String groupName,String orgId,String tabType,String plnaId); List getGroupByPersidNew(String persid, String ptype, String groupName,String orgId); }