3ea0a4e4d8075839a6e89761838823141aa7d353.svn-base 829 B

1234567891011121314151617181920212223242526
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.AttRoleBase;
  4. import cn.com.goldenwater.dcproj.param.AttRoleBaseParam;
  5. import cn.com.goldenwater.dcproj.param.RolePrivParam;
  6. import com.github.pagehelper.PageInfo;
  7. import java.util.ArrayList;
  8. import java.util.List;
  9. /**
  10. * @author lune
  11. * @date 2019-2-19
  12. */
  13. public interface AttRoleBaseService extends CrudService<AttRoleBase, AttRoleBaseParam> {
  14. // ------------------------- 自定方法 -------------------------
  15. void insertRole(AttRoleBase attRoleBase, ArrayList<RolePrivParam> rolePrivParams, RolePrivParam param);
  16. void updateRole(AttRoleBase attRoleBase, ArrayList<RolePrivParam> rolePrivParams, RolePrivParam param);
  17. List<AttRoleBase> getRoleByUserId(String guid);
  18. }