Commit b79be44d by 墨竹

feat:外部联系人新增回调字段

parent 0302d0f6
...@@ -5,6 +5,8 @@ import java.util.Date; ...@@ -5,6 +5,8 @@ import java.util.Date;
public class MemberUnionidRelatedDTO implements Serializable{ public class MemberUnionidRelatedDTO implements Serializable{
private static final long serialVersionUID = 1L;
private String corpid; private String corpid;
private String suiteid; private String suiteid;
...@@ -38,8 +40,11 @@ public class MemberUnionidRelatedDTO implements Serializable{ ...@@ -38,8 +40,11 @@ public class MemberUnionidRelatedDTO implements Serializable{
private String avatar; private String avatar;
private String welcomeCode; private String welcomeCode;
/**
* 自定义的state参数
*/
private String state;
private static final long serialVersionUID = 1L;
public String getWelcomeCode() { public String getWelcomeCode() {
return welcomeCode; return welcomeCode;
...@@ -177,5 +182,11 @@ public class MemberUnionidRelatedDTO implements Serializable{ ...@@ -177,5 +182,11 @@ public class MemberUnionidRelatedDTO implements Serializable{
this.avatar = avatar; this.avatar = avatar;
} }
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
} }
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