Commit 9c744fbb authored by 赵啸非's avatar 赵啸非

添加消息发送系统

parent 53c234fb
......@@ -30,7 +30,7 @@ public enum AppSourceEnum {
public static AppSourceEnum getByValue(String value) {
for (AppSourceEnum messageTypeEnum : AppSourceEnum.values()) {
if (messageTypeEnum.getValue() == value) {
if (messageTypeEnum.getValue().equals(value)) {
return messageTypeEnum;
}
}
......
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