From 5dec8dcc45b40a1d7acdf05be2f2ffd00759535e Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期六, 07 六月 2025 16:11:30 +0800 Subject: [PATCH] 1、*-global.yml配置文件中增加有关萤石云应用的配置; 2、萤石云视频监控相关数据库设计(萤石应用+视频监控站); 3、remote模块增加定时下载萤石应用AccessToken的监听器,及网络下载逻辑,数据库存储等功能实现; --- pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/util/DistrictLevel.java | 16 +++++++++++----- 1 files changed, 11 insertions(+), 5 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/util/DistrictLevel.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/util/DistrictLevel.java index bd55fd8..8e49596 100644 --- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/util/DistrictLevel.java +++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/util/DistrictLevel.java @@ -1,9 +1,12 @@ package com.dy.pipIrrGlobal.util; +import com.alibaba.fastjson2.JSONObject; import com.baomidou.mybatisplus.annotation.EnumValue; import com.dy.common.mybatis.envm.IEnum; +import java.util.ArrayList; import java.util.HashMap; +import java.util.List; import java.util.Map; /** @@ -28,11 +31,14 @@ } //鐢ㄦ潵杞琷son - public static Map<Byte, String> ObjMap = new HashMap<>(); + public static List<Map> LevelList = new ArrayList<>(); static { DistrictLevel[] all = DistrictLevel.values(); for (DistrictLevel one : all) { - ObjMap.put(one.code, one.name); + Map<String, Object> objMap = new HashMap<>(); + objMap.put("code", one.code); + objMap.put("name", one.name); + LevelList.add(objMap) ; } } @@ -47,9 +53,9 @@ } public static DistrictLevel get(Byte code){ - if(code.byteValue() == Province.code.byteValue()){ - return Province ; - }if(code.byteValue() == City.code.byteValue()){ + if(code.byteValue() == Province.code.byteValue()) { + return Province; + }else if(code.byteValue() == City.code.byteValue()){ return City ; }else if(code.byteValue() == County.code.byteValue()){ return County ; -- Gitblit v1.8.0