手机号

This commit is contained in:
苏竹红
2023-06-20 15:43:56 +08:00
parent 5731e874f1
commit 80336c5ce0
6 changed files with 31 additions and 6 deletions

View File

@@ -220,4 +220,6 @@ public class RedisConstant {
public static final String DEVICE_OPEN_TOKEN = "device_open_token:{0}:{1}:{2}";
public static final String PHONE_NUMBER= "phone_number_";
}

View File

@@ -90,4 +90,9 @@ public class RedisConstantUtil {
public String getRegionNameListKey(String eid, String regionId) {
return active + "_" + RedisConstant.REGION_ALL_NAME_CACHE + eid + ":" + regionId;
}
public String getPhoneNumber(String phoneNumber) {
return active + "_" + RedisConstant.PHONE_NUMBER + phoneNumber;
}
}