feat:证照同步

This commit is contained in:
苏竹红
2024-12-20 16:22:10 +08:00
parent c561029776
commit 67c6a72163
14 changed files with 277 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
package com.cool.store.enums;
/**
* @Author suzhuhong
* @Date 2024/12/20 14:13
* @Version 1.0
*/
public enum ExpiryTypeEnum {
LONG("long","长期"),
TEMP("temp","临时"),;
private String expiryType;
private String desc;
private ExpiryTypeEnum(String expiryType, String desc) {
this.expiryType = expiryType;
this.desc = desc;
}
public String getExpiryType() {
return expiryType;
}
public String getDesc() {
return desc;
}
}

View File

@@ -15,6 +15,7 @@ public enum RocketMqTagEnum {
USER_EVENT("user_event","钉钉通讯录变更事件"),
DEPT_EVENT("dept_event","部门事件"),
STORE_DING_QUEUE("store_ding_queue", "微应用钉钉消息发送"),
PARTNER_LICENSE_SYNC_QUEUE("partner_license_sync_queue", "招商证照信息同步");
;