运营区

This commit is contained in:
attiya 2025-05-07 16:47:54 +08:00
parent 34883e6258
commit 387bc835f4
2 changed files with 11 additions and 0 deletions

View File

@ -28,6 +28,8 @@ public class ReqEbikeOperationRegionDto {
*/
private String simpleName;
private Integer operationLevel;
/**
* 行政区id
*/

View File

@ -45,6 +45,15 @@ public class RedisUtil {
/* ------------------- key 相关操作 ------------------ */
/**
* 批量获取值
*
* @param keyList
*/
public List<Object> multiGet(List<String> keyList) {
return redisTemplate.opsForValue().multiGet(keyList);
}
/**
* 添加车辆地理位置
*