Commit 387d7b55 by guojuxing

添加构造

parent b45f2122
......@@ -38,6 +38,17 @@ public class AccountGroupMemberDTO implements Serializable{
private Integer enterpriseId;
public AccountGroupMemberDTO(Integer userId, String memberName, Integer type, Integer accountGroupId) {
this.userId = userId;
this.memberName = memberName;
this.type = type;
this.accountGroupId = accountGroupId;
}
public AccountGroupMemberDTO() {
}
public Integer getUserId() {
return userId;
}
......
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