Commit a7380c36 by guojuxing

协作人详情添加字段:资源组

parent 4bd83e95
......@@ -73,6 +73,11 @@ public class CollaboratorDTO implements Serializable{
private String creator;
/**
* 资源组ids,可以多选,_隔开,类似_1_2_'
*/
private String resourceIds;
/**
* 子应用ids,可以多选,用_隔开_2_3_
*/
private String subAppIds;
......@@ -96,6 +101,8 @@ public class CollaboratorDTO implements Serializable{
private List<Integer> menuIdList;
private List<Integer> resourceIdList;
public Integer getCollaboratorId() {
return collaboratorId;
}
......@@ -215,4 +222,20 @@ public class CollaboratorDTO implements Serializable{
public void setCollaborationEnterpriseName(String collaborationEnterpriseName) {
this.collaborationEnterpriseName = collaborationEnterpriseName;
}
public String getResourceIds() {
return resourceIds;
}
public void setResourceIds(String resourceIds) {
this.resourceIds = resourceIds;
}
public List<Integer> getResourceIdList() {
return resourceIdList;
}
public void setResourceIdList(List<Integer> resourceIdList) {
this.resourceIdList = resourceIdList;
}
}
......@@ -76,10 +76,11 @@ public interface CollaboratorApiService {

 * @author guojuxing
* @param subAppIds 子应用ID,英文逗号隔开
* @param menuIds
 操作权限ID,英文逗号隔开
* @param resourcesIds 资源组ID,英文逗号隔开
* @param collaboratorId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>


 */
ServiceResponse<Void> auth(String subAppIds, String menuIds, Integer collaboratorId);
ServiceResponse<Void> auth(String subAppIds, String menuIds, String resourcesIds, Integer collaboratorId);
/**
* 取消
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment