We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
希望增加构造函数如下,方便作为 requestParam 参数调用。 public WxMpKfAccountRequest(String kfAccount, String nickName, String inviteWx) { this.kfAccount = kfAccount; this.nickName = nickName; this.inviteWx = inviteWx; }
The text was updated successfully, but these errors were encountered:
不建议使用构造方法构造,现在所有的bean类都已经支持builder方法构造
Sorry, something went wrong.
按如下方式使用即可:
WxMpKfAccountRequest.builder().inviteWx(...).kfAccount(...).nickName(...).build();
#473 WxMpKfAccountRequest增加构造函数
edea54b
No branches or pull requests
希望增加构造函数如下,方便作为 requestParam 参数调用。
public WxMpKfAccountRequest(String kfAccount, String nickName, String inviteWx) {
this.kfAccount = kfAccount;
this.nickName = nickName;
this.inviteWx = inviteWx;
}
The text was updated successfully, but these errors were encountered: