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
EntPayRedpackResult 两个属性写错,造成取不到值
EntPayRedpackResult 两个属性写错,造成取不到值 /**
/**
totalAmount = readXmlString(d, "totalAmount"); sendListId = readXmlString(d, "sendListid");
返回的数据是<total_amount></total_amount>\n<send_listid></send_listid> 需要把属性解析改为total_amount和send_listid
totalAmount = readXmlString(d, "total_amount"); sendListId = readXmlString(d, "send_listid"); 由于本人没有安装git,麻烦贡献者各位了!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
简要描述
EntPayRedpackResult 两个属性写错,造成取不到值
模块版本情况
详细描述
EntPayRedpackResult 两个属性写错,造成取不到值
/**
*/
@XStreamAlias("totalAmount")
private String totalAmount;
/**
*/
@XStreamAlias("sendListid")
private String sendListId;
totalAmount = readXmlString(d, "totalAmount");
sendListId = readXmlString(d, "sendListid");
返回的数据是<total_amount></total_amount>\n<send_listid></send_listid>
需要把属性解析改为total_amount和send_listid
/**
*/
@XStreamAlias("total_amount")
private String totalAmount;
/**
*/
@XStreamAlias("send_listid")
private String sendListId;
totalAmount = readXmlString(d, "total_amount");
sendListId = readXmlString(d, "send_listid");
由于本人没有安装git,麻烦贡献者各位了!
The text was updated successfully, but these errors were encountered: