ea9c9bbc1c7c3ba73b74c08c8ca4842ab339d4b6.svn-base 1.0 KB

12345678910111213141516171819202122232425262728
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.dto.PersGroupDto;
  4. import cn.com.goldenwater.dcproj.model.AttUserBase;
  5. import cn.com.goldenwater.dcproj.param.AttUserBaseParam;
  6. import cn.com.goldenwater.dcproj.param.UserRoleParam;
  7. import com.github.pagehelper.PageInfo;
  8. import java.util.ArrayList;
  9. import java.util.List;
  10. /**
  11. * @author lune
  12. * @date 2019-2-19
  13. */
  14. public interface AttUserBaseService extends CrudService<AttUserBase, AttUserBaseParam> {
  15. // ------------------------- 自定方法 -------------------------
  16. void insertUser(AttUserBase attUserBase, ArrayList<UserRoleParam> userRoleParams, UserRoleParam param);
  17. void updateUser(AttUserBase attUserBase, ArrayList<UserRoleParam> userRoleParams, UserRoleParam param);
  18. List<PersGroupDto> getGroupByPersid(String persid,String ptype,String groupName,String orgId,String tabType,String plnaId);
  19. List<PersGroupDto> getGroupByPersidNew(String persid, String ptype, String groupName,String orgId);
  20. }