嗨森逛服务
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.
hai-server/hai-service/src/main/java/com/hai/msg/entity/MsgTopic.java

18 lines
305 B

package com.hai.msg.entity;
public enum MsgTopic {
// 门店账户业务员
MerStoreAccount("mer-store-account"),
oilPriceTask("OIL-PRICE-TASK");
private String name;
MsgTopic(String name){
this.name = name;
}
public String getName(){
return name;
}
}