feat:证照同步
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -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", "招商证照信息同步");
|
||||
;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user