1.消息推送修改

This commit is contained in:
2024-08-09 16:42:17 +08:00
parent 7f8a658143
commit dc291231ee
7 changed files with 86 additions and 33 deletions

View File

@@ -0,0 +1,17 @@
package com.chaozhanggui.system.cashierservice.entity.Enum;
public enum ShopWxMsgTypeEnum {
ALL_MSG(-1),
STOCK_MSG(0),
CONSUMABLES_MSG(1),
OPERATION_MSG(2);
private final Integer type;
ShopWxMsgTypeEnum(Integer type) {
this.type = type;
}
public Integer getType() {
return type;
}
}