| 12345678910111213141516171819202122232425262728 |
- 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<AttUserBase, AttUserBaseParam> {
- // ------------------------- 自定方法 -------------------------
- void insertUser(AttUserBase attUserBase, ArrayList<UserRoleParam> userRoleParams, UserRoleParam param);
- void updateUser(AttUserBase attUserBase, ArrayList<UserRoleParam> userRoleParams, UserRoleParam param);
- List<PersGroupDto> getGroupByPersid(String persid,String ptype,String groupName,String orgId,String tabType,String plnaId);
- List<PersGroupDto> getGroupByPersidNew(String persid, String ptype, String groupName,String orgId);
- }
|