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.
|
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;
|
|
}
|
|
}
|
|
|