加盟商资质审核

This commit is contained in:
俞扬
2023-06-16 11:46:04 +08:00
parent 81f74c54d6
commit 0479f46eda
18 changed files with 945 additions and 3 deletions

View File

@@ -8,8 +8,8 @@ package com.cool.store.enums;
*/
public enum DataSourceEnum {
SYNC(0, "同步"),
CREATE(1, "创建");
SYNC(0, "EC同步"),
CREATE(1, "小程序创建");
private Integer code;

View File

@@ -57,6 +57,8 @@ public enum ErrorCodeEnum {
ZONE_NOT_EXIST(500004, "战区不存在!", null),
INTERVIEW_ENTER_FAIL(1021101, "进入面试间失败", null),
DINGDING_USER_NOT_EXIST(1021102, "用户钉钉信息不存在,无法发起资质审核!", null),
INTERVIEW_NOT_EXIST(1021103, "面试信息不存在!", null),
SIGN_FAIL(600000, "验签失败", null),
GET_ACCESSTOKEN_ERROR(600001, "获取小程序TOKEN错误", null),

View File

@@ -171,4 +171,8 @@ public class RedisUtil {
public void delete(String key) {
redisTemplate.delete(key);
}
public Long increment(String key) {
return redisTemplate.boundValueOps(key).increment(1L);
}
}