commit
5771089bf4
@ -0,0 +1,41 @@ |
||||
package com.tsl3060.open.extend.core.payload; |
||||
|
||||
import com.tsl3060.open.extend.core.IApiRequest; |
||||
|
||||
import java.util.List; |
||||
|
||||
public class UserRelationPayload extends RequestPayload implements IApiRequest { |
||||
@Override |
||||
public String path() { |
||||
return "/v1/wanshun/user/relation"; |
||||
} |
||||
|
||||
private String openid; |
||||
private String parentId; |
||||
private List<String> children; |
||||
|
||||
|
||||
public String getOpenid() { |
||||
return openid; |
||||
} |
||||
|
||||
public void setOpenid(String openid) { |
||||
this.openid = openid; |
||||
} |
||||
|
||||
public String getParentId() { |
||||
return parentId; |
||||
} |
||||
|
||||
public void setParentId(String parentId) { |
||||
this.parentId = parentId; |
||||
} |
||||
|
||||
public List<String> getChildren() { |
||||
return children; |
||||
} |
||||
|
||||
public void setChildren(List<String> children) { |
||||
this.children = children; |
||||
} |
||||
} |
@ -0,0 +1,13 @@ |
||||
package com.tsl3060.open.extend.core.response; |
||||
|
||||
public class UserRelationResponse { |
||||
private boolean result; |
||||
|
||||
public boolean isResult() { |
||||
return result; |
||||
} |
||||
|
||||
public void setResult(boolean result) { |
||||
this.result = result; |
||||
} |
||||
} |
Loading…
Reference in new issue