You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
615 B
27 lines
615 B
package com.ynxbd.common.bean.enums;
|
|
|
|
import com.ynxbd.wx.config.WeChatConfig;
|
|
|
|
/**
|
|
* @Author wsq
|
|
* @Date 2022/09/23 10:45
|
|
* @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
|
|
*/
|
|
public enum HospEnum {
|
|
|
|
德宏州中医医院("wxadc09f1c9d0bccee", "");
|
|
|
|
|
|
public final String APP_ID;
|
|
|
|
public final String MESSAGE;
|
|
|
|
HospEnum(String APP_ID, String MESSAGE) {
|
|
this.APP_ID = APP_ID;
|
|
this.MESSAGE = MESSAGE;
|
|
}
|
|
|
|
public static boolean isHosp(HospEnum hospEnum) {
|
|
return hospEnum.APP_ID.equals(WeChatConfig.APP_ID);
|
|
}
|
|
}
|
|
|