From 6001a9dacdfb64c238fba73c40c96dd273da82b7 Mon Sep 17 00:00:00 2001 From: zhongrj <646384940@qq.com> Date: Sat, 04 Mar 2023 18:42:16 +0800 Subject: [PATCH] 缺失配置文件上传 --- .idea/inspectionProfiles/Project_Default.xml | 36 +++ .idea/jarRepositories.xml | 25 ++ .idea/vcs.xml | 6 .idea/modules.xml | 8 .idea/uiDesigner.xml | 124 ++++++++++++ .idea/workspace.xml | 348 ++++++++++++++++++++++++++++++++++ .idea/encodings.xml | 6 .idea/compiler.xml | 22 ++ .idea/.gitignore | 8 .idea/.name | 1 .idea/misc.xml | 11 + 11 files changed, 595 insertions(+), 0 deletions(-) diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..1296681 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..ae2533e --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +wvp-pro \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..97a4b0b --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="CompilerConfiguration"> + <annotationProcessing> + <profile default="true" name="Default" enabled="true" /> + <profile name="Maven default annotation processors profile" enabled="true"> + <sourceOutputDir name="target/generated-sources/annotations" /> + <sourceTestOutputDir name="target/generated-test-sources/test-annotations" /> + <outputRelativeToContentRoot value="true" /> + <module name="wvp-pro" /> + </profile> + </annotationProcessing> + <bytecodeTargetLevel> + <module name="wvp-pro" target="1.8" /> + </bytecodeTargetLevel> + </component> + <component name="JavacSettings"> + <option name="ADDITIONAL_OPTIONS_OVERRIDE"> + <module name="wvp-pro" options="-parameters" /> + </option> + </component> +</project> \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..63e9001 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="Encoding"> + <file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" /> + </component> +</project> \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..6560a98 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,36 @@ +<component name="InspectionProjectProfileManager"> + <profile version="1.0"> + <option name="myName" value="Project Default" /> + <inspection_tool class="JavaDoc" enabled="true" level="WARNING" enabled_by_default="true"> + <option name="TOP_LEVEL_CLASS_OPTIONS"> + <value> + <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" /> + <option name="REQUIRED_TAGS" value="" /> + </value> + </option> + <option name="INNER_CLASS_OPTIONS"> + <value> + <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" /> + <option name="REQUIRED_TAGS" value="" /> + </value> + </option> + <option name="METHOD_OPTIONS"> + <value> + <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" /> + <option name="REQUIRED_TAGS" value="@return@param@throws or @exception" /> + </value> + </option> + <option name="FIELD_OPTIONS"> + <value> + <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" /> + <option name="REQUIRED_TAGS" value="" /> + </value> + </option> + <option name="IGNORE_DEPRECATED" value="false" /> + <option name="IGNORE_JAVADOC_PERIOD" value="true" /> + <option name="IGNORE_DUPLICATED_THROWS" value="false" /> + <option name="IGNORE_POINT_TO_ITSELF" value="false" /> + <option name="myAdditionalJavadocTags" value="date" /> + </inspection_tool> + </profile> +</component> \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..6dcea2e --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="RemoteRepositoriesConfiguration"> + <remote-repository> + <option name="id" value="nexus-aliyun" /> + <option name="name" value="Nexus aliyun" /> + <option name="url" value="https://maven.aliyun.com/repository/public" /> + </remote-repository> + <remote-repository> + <option name="id" value="central" /> + <option name="name" value="Central Repository" /> + <option name="url" value="https://repo.maven.apache.org/maven2" /> + </remote-repository> + <remote-repository> + <option name="id" value="central" /> + <option name="name" value="Maven Central repository" /> + <option name="url" value="https://repo1.maven.org/maven2" /> + </remote-repository> + <remote-repository> + <option name="id" value="jboss.community" /> + <option name="name" value="JBoss Community repository" /> + <option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" /> + </remote-repository> + </component> +</project> \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..4361200 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="MavenProjectsManager"> + <option name="originalFiles"> + <list> + <option value="$PROJECT_DIR$/pom.xml" /> + </list> + </option> + </component> + <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK" /> +</project> \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..1f3c017 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="ProjectModuleManager"> + <modules> + <module fileurl="file://$PROJECT_DIR$/wvp-pro.iml" filepath="$PROJECT_DIR$/wvp-pro.iml" /> + </modules> + </component> +</project> \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..e96534f --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="Palette2"> + <group name="Swing"> + <item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false" can-attach-label="false"> + <default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" /> + </item> + <item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false" auto-create-binding="false" can-attach-label="false"> + <default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" /> + </item> + <item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false" auto-create-binding="false" can-attach-label="false"> + <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" /> + </item> + <item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false" auto-create-binding="false" can-attach-label="true"> + <default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" /> + </item> + <item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false" auto-create-binding="true" can-attach-label="false"> + <default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" /> + <initial-values> + <property name="text" value="Button" /> + </initial-values> + </item> + <item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false" auto-create-binding="true" can-attach-label="false"> + <default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" /> + <initial-values> + <property name="text" value="RadioButton" /> + </initial-values> + </item> + <item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false" auto-create-binding="true" can-attach-label="false"> + <default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" /> + <initial-values> + <property name="text" value="CheckBox" /> + </initial-values> + </item> + <item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false" auto-create-binding="false" can-attach-label="false"> + <default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" /> + <initial-values> + <property name="text" value="Label" /> + </initial-values> + </item> + <item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false" auto-create-binding="true" can-attach-label="true"> + <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1"> + <preferred-size width="150" height="-1" /> + </default-constraints> + </item> + <item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true"> + <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1"> + <preferred-size width="150" height="-1" /> + </default-constraints> + </item> + <item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false" auto-create-binding="true" can-attach-label="true"> + <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1"> + <preferred-size width="150" height="-1" /> + </default-constraints> + </item> + <item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false" auto-create-binding="true" can-attach-label="true"> + <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3"> + <preferred-size width="150" height="50" /> + </default-constraints> + </item> + <item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false" auto-create-binding="true" can-attach-label="true"> + <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3"> + <preferred-size width="150" height="50" /> + </default-constraints> + </item> + <item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false" auto-create-binding="true" can-attach-label="true"> + <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3"> + <preferred-size width="150" height="50" /> + </default-constraints> + </item> + <item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false" auto-create-binding="true" can-attach-label="true"> + <default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" /> + </item> + <item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false" auto-create-binding="true" can-attach-label="false"> + <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3"> + <preferred-size width="150" height="50" /> + </default-constraints> + </item> + <item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false" auto-create-binding="true" can-attach-label="false"> + <default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3"> + <preferred-size width="150" height="50" /> + </default-constraints> + </item> + <item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false" auto-create-binding="true" can-attach-label="false"> + <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3"> + <preferred-size width="150" height="50" /> + </default-constraints> + </item> + <item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false" auto-create-binding="true" can-attach-label="false"> + <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3"> + <preferred-size width="200" height="200" /> + </default-constraints> + </item> + <item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false" auto-create-binding="false" can-attach-label="false"> + <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3"> + <preferred-size width="200" height="200" /> + </default-constraints> + </item> + <item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true"> + <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" /> + </item> + <item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false" auto-create-binding="true" can-attach-label="false"> + <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" /> + </item> + <item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false" auto-create-binding="false" can-attach-label="false"> + <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" /> + </item> + <item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false" auto-create-binding="true" can-attach-label="false"> + <default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" /> + </item> + <item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false" auto-create-binding="false" can-attach-label="false"> + <default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1"> + <preferred-size width="-1" height="20" /> + </default-constraints> + </item> + <item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png" removable="false" auto-create-binding="false" can-attach-label="false"> + <default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" /> + </item> + <item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false" auto-create-binding="true" can-attach-label="false"> + <default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" /> + </item> + </group> + </component> +</project> \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="VcsDirectoryMappings"> + <mapping directory="$PROJECT_DIR$" vcs="Git" /> + </component> +</project> \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..36b740e --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,348 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="BranchesTreeState"> + <expand> + <path> + <item name="ROOT" type="e8cecc67:BranchNodeDescriptor" /> + <item name="LOCAL_ROOT" type="e8cecc67:BranchNodeDescriptor" /> + </path> + </expand> + <select> + <path> + <item name="ROOT" type="e8cecc67:BranchNodeDescriptor" /> + <item name="LOCAL_ROOT" type="e8cecc67:BranchNodeDescriptor" /> + <item name="BRANCH:main" type="e8cecc67:BranchNodeDescriptor" /> + </path> + </select> + </component> + <component name="ChangeListManager"> + <list default="true" id="208daac0-1abd-465d-abf2-6a0414be019b" name="默认的" comment="配置提交"> + <change beforePath="$PROJECT_DIR$/src/main/java/com/genersoft/iot/vmp/netty/server/UdpServer.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/genersoft/iot/vmp/netty/server/UdpServer.java" afterDir="false" /> + <change beforePath="$PROJECT_DIR$/src/main/resources/application.yml" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/resources/application.yml" afterDir="false" /> + </list> + <option name="SHOW_DIALOG" value="false" /> + <option name="HIGHLIGHT_CONFLICTS" value="true" /> + <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" /> + <option name="LAST_RESOLUTION" value="IGNORE" /> + </component> + <component name="FileTemplateManagerImpl"> + <option name="RECENT_TEMPLATES"> + <list> + <option value="Interface" /> + <option value="Class" /> + </list> + </option> + </component> + <component name="Git.Settings"> + <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" /> + </component> + <component name="ProjectId" id="2DjiKrABuvRQZiE0FsL0c3fg9Z7" /> + <component name="ProjectLevelVcsManager" settingsEditedManually="true" /> + <component name="ProjectViewState"> + <option name="hideEmptyMiddlePackages" value="true" /> + <option name="showLibraryContents" value="true" /> + </component> + <component name="PropertiesComponent"> + <property name="RequestMappingsPanelOrder0" value="0" /> + <property name="RequestMappingsPanelOrder1" value="1" /> + <property name="RequestMappingsPanelWidth0" value="75" /> + <property name="RequestMappingsPanelWidth1" value="75" /> + <property name="RunOnceActivity.OpenProjectViewOnStart" value="true" /> + <property name="RunOnceActivity.ShowReadmeOnStart" value="true" /> + <property name="WebServerToolWindowFactoryState" value="false" /> + <property name="aspect.path.notification.shown" value="true" /> + <property name="last_opened_file_path" value="$PROJECT_DIR$/../../geoserver/geoserver-2.19.6" /> + <property name="node.js.detected.package.eslint" value="true" /> + <property name="node.js.detected.package.tslint" value="true" /> + <property name="node.js.path.for.package.eslint" value="project" /> + <property name="node.js.path.for.package.tslint" value="project" /> + <property name="node.js.selected.package.eslint" value="(autodetect)" /> + <property name="node.js.selected.package.tslint" value="(autodetect)" /> + <property name="nodejs_package_manager_path" value="npm" /> + <property name="project.structure.last.edited" value="Project" /> + <property name="project.structure.proportion" value="0.0" /> + <property name="project.structure.side.proportion" value="0.2" /> + <property name="settings.editor.selected.configurable" value="project.propVCSSupport.Issue.Navigation" /> + <property name="vcs.patch.to.clipboard" value="true" /> + </component> + <component name="ReactorSettings"> + <option name="notificationShown" value="true" /> + </component> + <component name="RecentsManager"> + <key name="CopyClassDialog.RECENTS_KEY"> + <recent name="com.genersoft.iot.vmp.policeBodyCamera.vo" /> + <recent name="com.genersoft.iot.vmp.policeBodyCamera.mapper" /> + <recent name="com.genersoft.iot.vmp.policeBodyCamera.entity" /> + <recent name="com.genersoft.iot.vmp.netty.business.mapper" /> + <recent name="com.genersoft.iot.vmp.netty.business.service" /> + </key> + <key name="CopyFile.RECENT_KEYS"> + <recent name="F:\code\server\shangraoshiju\wvp-GB281181-pro\src\main\java\com\genersoft\iot\vmp\netty\business\mapper" /> + <recent name="F:\code\server\shangraoshiju\wvp-GB281181-pro\src\main\java\com\genersoft\iot\vmp\netty\business" /> + <recent name="F:\code\server\shangraoshiju\wvp-GB281181-pro\src\main\java\com\genersoft\iot\vmp\netty\entity" /> + <recent name="F:\code\server\shangraoshiju\wvp-GB281181-pro\src\main\resources" /> + <recent name="F:\code\server\shangraoshiju\wvp-GB281181-pro\src\main\java\com\genersoft\iot\vmp\netty" /> + </key> + </component> + <component name="RunManager"> + <configuration name="VManageBootstrap" type="SpringBootApplicationConfigurationType" factoryName="Spring Boot"> + <module name="wvp-pro" /> + <option name="SPRING_BOOT_MAIN_CLASS" value="com.genersoft.iot.vmp.VManageBootstrap" /> + <method v="2"> + <option name="Make" enabled="true" /> + </method> + </configuration> + </component> + <component name="SpringBootOptions"> + <option name="showAdditionalConfigNotification" value="false" /> + </component> + <component name="SshConsoleOptionsProvider"> + <option name="myEncoding" value="UTF-8" /> + </component> + <component name="SvnConfiguration"> + <configuration>C:\Users\Administrator\AppData\Roaming\Subversion</configuration> + </component> + <component name="TaskManager"> + <task active="true" id="Default" summary="Default task"> + <changelist id="208daac0-1abd-465d-abf2-6a0414be019b" name="默认的" comment="" /> + <created>1661218833709</created> + <option name="number" value="Default" /> + <option name="presentableId" value="Default" /> + <updated>1661218833709</updated> + <workItem from="1661218836910" duration="5137000" /> + <workItem from="1661238547519" duration="3493000" /> + <workItem from="1661244721984" duration="4038000" /> + <workItem from="1663251120115" duration="272000" /> + <workItem from="1663252430164" duration="2342000" /> + <workItem from="1666158815866" duration="6037000" /> + <workItem from="1666166639744" duration="786000" /> + <workItem from="1666168631587" duration="119000" /> + <workItem from="1668581640137" duration="1157000" /> + <workItem from="1668999936521" duration="157000" /> + <workItem from="1670983733773" duration="1895000" /> + <workItem from="1671007336344" duration="66000" /> + <workItem from="1671007625186" duration="224000" /> + <workItem from="1671008062222" duration="3381000" /> + <workItem from="1671025000134" duration="639000" /> + <workItem from="1671162195124" duration="1066000" /> + <workItem from="1671173736963" duration="5505000" /> + <workItem from="1671415084030" duration="4588000" /> + <workItem from="1671431812275" duration="1923000" /> + <workItem from="1672902791288" duration="832000" /> + <workItem from="1673925274653" duration="402000" /> + <workItem from="1676691106505" duration="3787000" /> + <workItem from="1676885398946" duration="705000" /> + <workItem from="1676939366952" duration="7347000" /> + <workItem from="1677119876229" duration="626000" /> + <workItem from="1677121218729" duration="2079000" /> + <workItem from="1677651650908" duration="1778000" /> + <workItem from="1677660534432" duration="58000" /> + <workItem from="1677726051229" duration="38096000" /> + </task> + <task id="LOCAL-00001" summary="默认的"> + <created>1676691639632</created> + <option name="number" value="00001" /> + <option name="presentableId" value="LOCAL-00001" /> + <option name="project" value="LOCAL" /> + <updated>1676691639632</updated> + </task> + <task id="LOCAL-00002" summary="1. 日志打印修改 2. 新增手台,执法记录仪udp 服务集成,新增本地启动配置"> + <created>1676945955116</created> + <option name="number" value="00002" /> + <option name="presentableId" value="LOCAL-00002" /> + <option name="project" value="LOCAL" /> + <updated>1676945955116</updated> + </task> + <task id="LOCAL-00003" summary="默认配置修改"> + <created>1676946039226</created> + <option name="number" value="00003" /> + <option name="presentableId" value="LOCAL-00003" /> + <option name="project" value="LOCAL" /> + <updated>1676946039226</updated> + </task> + <task id="LOCAL-00004" summary="配置提交"> + <created>1676946087539</created> + <option name="number" value="00004" /> + <option name="presentableId" value="LOCAL-00004" /> + <option name="project" value="LOCAL" /> + <updated>1676946087539</updated> + </task> + <task id="LOCAL-00005" summary="udp 接收修改"> + <created>1676946898308</created> + <option name="number" value="00005" /> + <option name="presentableId" value="LOCAL-00005" /> + <option name="project" value="LOCAL" /> + <updated>1676946898308</updated> + </task> + <task id="LOCAL-00006" summary="手台,执法记录仪基础接口新增(新增,修改,查询接口) 集成lombok"> + <created>1677899293870</created> + <option name="number" value="00006" /> + <option name="presentableId" value="LOCAL-00006" /> + <option name="project" value="LOCAL" /> + <updated>1677899293870</updated> + </task> + <task id="LOCAL-00007" summary="执法记录仪移动位置插入新增"> + <created>1677899968353</created> + <option name="number" value="00007" /> + <option name="presentableId" value="LOCAL-00007" /> + <option name="project" value="LOCAL" /> + <updated>1677899968353</updated> + </task> + <option name="localTasksCounter" value="8" /> + <servers /> + </component> + <component name="TypeScriptGeneratedFilesManager"> + <option name="version" value="2" /> + </component> + <component name="Vcs.Log.Tabs.Properties"> + <option name="TAB_STATES"> + <map> + <entry key="MAIN"> + <value> + <State> + <option name="FILTERS"> + <map> + <entry key="branch"> + <value> + <list> + <option value="main" /> + </list> + </value> + </entry> + </map> + </option> + </State> + </value> + </entry> + </map> + </option> + <option name="oldMeFiltersMigrated" value="true" /> + </component> + <component name="VcsManagerConfiguration"> + <MESSAGE value="默认的" /> + <MESSAGE value="1. 日志打印修改 2. 新增手台,执法记录仪udp 服务集成,新增本地启动配置" /> + <MESSAGE value="默认配置修改" /> + <MESSAGE value="配置提交" /> + <MESSAGE value="udp 接收修改" /> + <MESSAGE value="手台,执法记录仪基础接口新增(新增,修改,查询接口) 集成lombok" /> + <MESSAGE value="执法记录仪移动位置插入新增" /> + <option name="LAST_COMMIT_MESSAGE" value="执法记录仪移动位置插入新增" /> + </component> + <component name="WindowStateProjectService"> + <state x="765" y="225" key="#com.intellij.ide.util.MemberChooser" timestamp="1677899698298"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="765" y="225" key="#com.intellij.ide.util.MemberChooser/0.0.1920.1040@0.0.1920.1040" timestamp="1677899698298" /> + <state x="511" y="442" key="#com.intellij.refactoring.move.MoveHandler.SelectRefactoringDialog" timestamp="1677736409554"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="511" y="442" key="#com.intellij.refactoring.move.MoveHandler.SelectRefactoringDialog/0.0.1920.1040@0.0.1920.1040" timestamp="1677736409554" /> + <state x="640" y="386" width="639" height="274" key="#com.intellij.refactoring.move.moveClassesOrPackages.MoveClassesOrPackagesDialog.classes" timestamp="1677740738587"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="640" y="386" width="639" height="274" key="#com.intellij.refactoring.move.moveClassesOrPackages.MoveClassesOrPackagesDialog.classes/0.0.1920.1040@0.0.1920.1040" timestamp="1677740738587" /> + <state x="184" y="86" key="DiffContextDialog" timestamp="1676946016193"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="184" y="86" key="DiffContextDialog/0.0.1920.1040@0.0.1920.1040" timestamp="1676946016193" /> + <state x="740" y="275" key="FileChooserDialogImpl" timestamp="1677835225799"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="740" y="275" key="FileChooserDialogImpl/0.0.1920.1040@0.0.1920.1040" timestamp="1677835225799" /> + <state width="1877" height="529" key="GridCell.Tab.0.bottom" timestamp="1677917445519"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state width="1877" height="529" key="GridCell.Tab.0.bottom/0.0.1920.1040@0.0.1920.1040" timestamp="1677917445519" /> + <state width="1877" height="529" key="GridCell.Tab.0.center" timestamp="1677917445519"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state width="1877" height="529" key="GridCell.Tab.0.center/0.0.1920.1040@0.0.1920.1040" timestamp="1677917445519" /> + <state width="1877" height="529" key="GridCell.Tab.0.left" timestamp="1677917445519"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state width="1877" height="529" key="GridCell.Tab.0.left/0.0.1920.1040@0.0.1920.1040" timestamp="1677917445519" /> + <state width="1877" height="529" key="GridCell.Tab.0.right" timestamp="1677917445519"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state width="1877" height="529" key="GridCell.Tab.0.right/0.0.1920.1040@0.0.1920.1040" timestamp="1677917445519" /> + <state width="1877" height="529" key="GridCell.Tab.1.bottom" timestamp="1677917445157"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state width="1877" height="529" key="GridCell.Tab.1.bottom/0.0.1920.1040@0.0.1920.1040" timestamp="1677917445157" /> + <state width="1877" height="529" key="GridCell.Tab.1.center" timestamp="1677917445157"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state width="1877" height="529" key="GridCell.Tab.1.center/0.0.1920.1040@0.0.1920.1040" timestamp="1677917445157" /> + <state width="1877" height="529" key="GridCell.Tab.1.left" timestamp="1677917445157"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state width="1877" height="529" key="GridCell.Tab.1.left/0.0.1920.1040@0.0.1920.1040" timestamp="1677917445157" /> + <state width="1877" height="529" key="GridCell.Tab.1.right" timestamp="1677917445157"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state width="1877" height="529" key="GridCell.Tab.1.right/0.0.1920.1040@0.0.1920.1040" timestamp="1677917445157" /> + <state width="1877" height="529" key="GridCell.Tab.2.bottom" timestamp="1677917445157"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state width="1877" height="529" key="GridCell.Tab.2.bottom/0.0.1920.1040@0.0.1920.1040" timestamp="1677917445157" /> + <state width="1877" height="529" key="GridCell.Tab.2.center" timestamp="1677917445157"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state width="1877" height="529" key="GridCell.Tab.2.center/0.0.1920.1040@0.0.1920.1040" timestamp="1677917445157" /> + <state width="1877" height="529" key="GridCell.Tab.2.left" timestamp="1677917445157"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state width="1877" height="529" key="GridCell.Tab.2.left/0.0.1920.1040@0.0.1920.1040" timestamp="1677917445157" /> + <state width="1877" height="529" key="GridCell.Tab.2.right" timestamp="1677917445157"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state width="1877" height="529" key="GridCell.Tab.2.right/0.0.1920.1040@0.0.1920.1040" timestamp="1677917445157" /> + <state x="698" y="221" key="RollbackChangesDialog" timestamp="1671415751049"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="698" y="221" key="RollbackChangesDialog/0.0.1920.1040@0.0.1920.1040" timestamp="1671415751049" /> + <state x="461" y="164" key="SettingsEditor" timestamp="1676692121637"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="461" y="164" key="SettingsEditor/0.0.1920.1040@0.0.1920.1040" timestamp="1676692121637" /> + <state x="552" y="252" key="Vcs.Push.Dialog.v2" timestamp="1677899969721"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="552" y="252" key="Vcs.Push.Dialog.v2/0.0.1920.1040@0.0.1920.1040" timestamp="1677899969721" /> + <state x="92" y="92" width="1736" height="856" key="com.intellij.history.integration.ui.views.FileHistoryDialog" timestamp="1673925442539"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="92" y="92" width="1736" height="856" key="com.intellij.history.integration.ui.views.FileHistoryDialog/0.0.1920.1040@0.0.1920.1040" timestamp="1673925442539" /> + <state x="661" y="252" width="866" height="536" key="find.popup" timestamp="1677922543352"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="661" y="252" width="866" height="536" key="find.popup/0.0.1920.1040@0.0.1920.1040" timestamp="1677922543352" /> + <state x="643" y="306" key="git4idea.merge.GitPullDialog" timestamp="1676946006482"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="643" y="306" key="git4idea.merge.GitPullDialog/0.0.1920.1040@0.0.1920.1040" timestamp="1676946006482" /> + <state x="716" y="419" key="git4idea.remote.GitConfigureRemotesDialog" timestamp="1676692396357"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="716" y="419" key="git4idea.remote.GitConfigureRemotesDialog/0.0.1920.1040@0.0.1920.1040" timestamp="1676692396357" /> + <state x="616" y="240" key="run.anything.popup" timestamp="1677745746270"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="616" y="240" key="run.anything.popup/0.0.1920.1040@0.0.1920.1040" timestamp="1677745746270" /> + <state x="623" y="225" width="672" height="678" key="search.everywhere.popup" timestamp="1677744075205"> + <screen x="0" y="0" width="1920" height="1040" /> + </state> + <state x="623" y="225" width="672" height="678" key="search.everywhere.popup/0.0.1920.1040@0.0.1920.1040" timestamp="1677744075205" /> + </component> + <component name="XDebuggerManager"> + <breakpoint-manager> + <breakpoints> + <line-breakpoint enabled="true" type="java-line"> + <url>file://$PROJECT_DIR$/src/main/java/com/genersoft/iot/vmp/gb28181/transmit/event/request/impl/SubscribeRequestProcessor.java</url> + <line>183</line> + <option name="timeStamp" value="1" /> + </line-breakpoint> + </breakpoints> + </breakpoint-manager> + </component> +</project> \ No newline at end of file -- Gitblit v1.9.3