Commit 23ea957b authored by liwenbin's avatar liwenbin

fix

parent 3ca53eff
......@@ -60,7 +60,7 @@ public enum FundingResult{
public static FundingResult fromCode(String code) {
for (FundingResult unionType : FundingResult.values()) {
if (code == unionType.code) {
if (unionType.code.equals(code)) {
return unionType;
}
}
......
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