Commit d0f67e51 by jinxin

日志记录

parent b55eccb0
......@@ -18,7 +18,7 @@ public enum QywxErrCode {
public static QywxErrCode getValue(String code) {
for (QywxErrCode sec : QywxErrCode.values()) {
if (code == sec.getCode()) {
if (code.equals(sec.getCode())) {
return sec;
}
}
......
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