LingxinMeng před 2 roky
rodič
revize
5b39c1c7cc
44 změnil soubory, kde provedl 151 přidání a 91 odebrání
  1. 4 0
      api-common/src/main/java/api/common/pojo/param/algorithm/AlgorithmParameter.java
  2. 15 23
      api-common/src/main/java/api/common/pojo/vo/algorithm/AlgorithmVO.java
  3. 8 8
      simulation-resource-common/src/main/java/com/css/simulation/resource/common/acl/entity/AlgorithmExpandAclEntity.java
  4. 9 9
      simulation-resource-common/src/main/java/com/css/simulation/resource/common/infrastructure/mysql/entity/AlgorithmExpandInfrastructureEntity.java
  5. 6 0
      simulation-resource-server/pom.xml
  6. 66 51
      simulation-resource-server/src/main/java/com/css/simulation/resource/server/application/impl/AlgorithmServiceImpl.java
  7. 6 0
      simulation-resource-server/src/main/java/com/css/simulation/resource/server/infrastructure/mysql/mapper/AlgorithmExpandMapper.java
  8. 37 0
      simulation-resource-server/src/main/resources/mysql/mapper/AlgorithmExpandMapper.xml
  9. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/AlgorithmMapper.xml
  10. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/CameraMapper.xml
  11. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/ClusterMapper.xml
  12. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/ConfigMapper.xml
  13. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/DictMapper.xml
  14. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/GpsMapper.xml
  15. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/HomePageMapper.xml
  16. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/LidarMapper.xml
  17. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/LogMapper.xml
  18. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/MenuMapper.xml
  19. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/OgtMapper.xml
  20. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/ParameterMapper.xml
  21. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/RoleMapper.xml
  22. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SceneAccidentMapper.xml
  23. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SceneGeneralDataMapper.xml
  24. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SceneGeneralExampleMapper.xml
  25. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SceneGeneralTemplateMapper.xml
  26. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SceneImportMapper.xml
  27. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SceneNaturalMapper.xml
  28. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/ScenePackageMapper.xml
  29. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/ScenePackageSublistMapper.xml
  30. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SceneStandardsRegulationsMapper.xml
  31. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/ScoringRulesMapper.xml
  32. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SimulationAutomaticProjectMapper.xml
  33. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SimulationAutomaticSubProjectMapper.xml
  34. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SimulationMptFirstTargetScoreMapper.xml
  35. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SimulationMptLastTargetScoreMapper.xml
  36. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SimulationProjectMapper.xml
  37. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SimulationProjectTaskMapper.xml
  38. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SystemScenePackageMapper.xml
  39. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SystemScenePackageSublistMapper.xml
  40. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/SystemUserSceneMapper.xml
  41. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/TestMapper.xml
  42. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/UserMapper.xml
  43. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/VehicleMapper.xml
  44. 0 0
      simulation-resource-server/src/main/resources/mysql/mapper/VehicleTempMapper.xml

+ 4 - 0
api-common/src/main/java/api/common/pojo/param/algorithm/AlgorithmParameter.java

@@ -22,4 +22,8 @@ public class AlgorithmParameter extends PageParameter {
     private String isDeleted;           // 是否删除
     private String share;               // 是否公有
     private String createUserId;        // 创建用户ID
+    private String algorithmVersion;   // 算法版本
+    private String team; // 参赛队伍
+    private String topic; // 赛题
+    private String status; // 进度
 }

+ 15 - 23
api-common/src/main/java/api/common/pojo/vo/algorithm/AlgorithmVO.java

@@ -1,31 +1,23 @@
 package api.common.pojo.vo.algorithm;
 
-import lombok.Getter;
-import lombok.Setter;
+import lombok.*;
 
 /**
  * 算法列表vo
  */
-@Getter
-@Setter
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+@Builder
 public class AlgorithmVO {
-
-    //算法ID
-    private String id;
-
-    //算法名称
-    private String algorithmCode;
-
-    //算法名称
-    private String algorithmName;
-
-    //算法描述
-    private String description;
-
-    //校验状态
-    private String validationStatus;
-
-    //上传方式
-    private String uploadMode;
-
+    private String id;  //算法ID
+    private String algorithmCode;   //算法名称
+    private String algorithmName;  //算法名称
+    private String description; //算法描述
+    private String algorithmVersion;
+    private String team = "";
+    private String topic = "";
+    private String status = "";
+    private String validationStatus; //校验状态
+    private String uploadMode; //上传方式
 }

+ 8 - 8
simulation-resource-common/src/main/java/com/css/simulation/resource/common/acl/entity/AlgorithmExpandAclEntity.java

@@ -12,19 +12,19 @@ import lombok.NoArgsConstructor;
 @Builder
 public class AlgorithmExpandAclEntity {
     @JsonAlias({"id"})
-    private String id = "默认空值";
+    private String id = "";
     @JsonAlias({"algorithmId"})
-    private String algorithmId = "默认空值";
+    private String algorithmId = "";
     @JsonAlias({"algorithmName"})
-    private String algorithmName = "默认空值";
+    private String algorithmName = "";
     @JsonAlias({"description"})
-    private String description = "默认空值";
+    private String description = "";
     @JsonAlias({"algorithmType"})
-    private String algorithmType = "默认空值";
+    private String algorithmType = "";
     @JsonAlias({"algorithmVersion", "evaluationName"})
-    private String algorithmVersion = "默认空值";
+    private String algorithmVersion = "";
     @JsonAlias({"team", "teamName"})
-    private String team = "默认空值";
+    private String team = "";
     @JsonAlias({"topic", "match"})
-    private String topic = "默认空值";
+    private String topic = "";
 }

+ 9 - 9
simulation-resource-common/src/main/java/com/css/simulation/resource/common/infrastructure/mysql/entity/AlgorithmExpandInfrastructureEntity.java

@@ -10,13 +10,13 @@ import lombok.NoArgsConstructor;
 @AllArgsConstructor
 @Builder
 public class AlgorithmExpandInfrastructureEntity {
-    private String id = "默认空值";
-    private String algorithmId = "默认空值";
-    private String algorithmName = "默认空值";
-    private String description = "默认空值";
-    private String algorithmType = "默认空值";
-    private String algorithmVersion = "默认空值";
-    private String team = "默认空值";
-    private String topic = "默认空值";
-    private String status = "默认空值";
+    private String id = "";
+    private String algorithmId = "";
+    private String algorithmName = "";
+    private String description = "";
+    private String algorithmType = "";
+    private String algorithmVersion = "";
+    private String team = "";
+    private String topic = "";
+    private String status = "";
 }

+ 6 - 0
simulation-resource-server/pom.xml

@@ -130,6 +130,12 @@
             <groupId>com.itextpdf</groupId>
             <artifactId>itext-asian</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.xmlbeans</groupId>
+            <artifactId>xmlbeans</artifactId>
+            <version>5.0.3</version>
+            <scope>compile</scope>
+        </dependency>
 
     </dependencies>
     <build>

+ 66 - 51
simulation-resource-server/src/main/java/com/css/simulation/resource/server/application/impl/AlgorithmServiceImpl.java

@@ -10,18 +10,19 @@ import api.common.pojo.po.algorithm.AlgorithmPO;
 import api.common.pojo.vo.algorithm.AlgorithmVO;
 import api.common.pojo.vo.algorithm.RunningProjectVO;
 import api.common.util.*;
-import com.css.simulation.resource.server.infrastructure.mysql.mapper.AlgorithmExpandMapper;
-import com.css.simulation.resource.server.infrastructure.mysql.mapper.AlgorithmMapper;
-import com.css.simulation.resource.server.application.AlgorithmService;
-import com.css.simulation.resource.server.infrastructure.common.utils.AuthUtil;
-import com.css.simulation.resource.server.infrastructure.common.utils.PageUtil;
-import com.css.simulation.resource.server.infrastructure.common.utils.PoUtil;
-import com.css.simulation.resource.server.infrastructure.common.configuration.git.GitConfiguration;
 import com.css.simulation.resource.server.acl.feign.AlgoPlatformService;
 import com.css.simulation.resource.server.acl.feign.FileDownService;
 import com.css.simulation.resource.server.acl.feign.SchedulerService;
-import com.css.simulation.resource.server.application.SimulationProjectService;
+import com.css.simulation.resource.server.application.AlgorithmService;
 import com.css.simulation.resource.server.application.DictService;
+import com.css.simulation.resource.server.application.SimulationProjectService;
+import com.css.simulation.resource.server.infrastructure.common.configuration.git.GitConfiguration;
+import com.css.simulation.resource.server.infrastructure.common.utils.AuthUtil;
+import com.css.simulation.resource.server.infrastructure.common.utils.PageUtil;
+import com.css.simulation.resource.server.infrastructure.common.utils.PoUtil;
+import com.css.simulation.resource.server.infrastructure.mysql.mapper.AlgorithmExpandMapper;
+import com.css.simulation.resource.server.infrastructure.mysql.mapper.AlgorithmMapper;
+import com.github.pagehelper.PageHelper;
 import com.github.pagehelper.PageInfo;
 import lombok.SneakyThrows;
 import lombok.extern.slf4j.Slf4j;
@@ -147,17 +148,21 @@ public class AlgorithmServiceImpl implements AlgorithmService {
 
     @Override
     public ResponseBodyVO<Object> selectAlgoPlatformList(AlgorithmParameter param) {
-        //获取参数
-        String algorithmId = param.getAlgorithmCode();
-        String algorithmName = param.getAlgorithmName();
-        String description = param.getDescription();
+        //1 同步算法平台数据到仿真云
+//        final String algorithmId = param.getAlgorithmCode();
+        final String algorithmName = param.getAlgorithmName();
+        final String description = param.getDescription();
+        final String algorithmVersion = param.getAlgorithmVersion();
+        final String team = param.getTeam();
+        final String topic = param.getTopic();
+        final String status = param.getStatus();
         Integer page = param.getPageNum();
         Integer size = param.getPageSize();
         String sort = "algorithmId-desc";
         String urlParam = "";
-        if (StringUtil.isNotEmpty(algorithmId)) {
-            urlParam = urlParam + "&algorithmId=" + algorithmId;
-        }
+//        if (StringUtil.isNotEmpty(algorithmId)) {
+//            urlParam = urlParam + "&algorithmId=" + algorithmId;
+//        }
         if (StringUtil.isNotEmpty(algorithmName)) {
             urlParam = urlParam + "&algorithmName=" + algorithmName;
         }
@@ -171,44 +176,54 @@ public class AlgorithmServiceImpl implements AlgorithmService {
             urlParam = urlParam + "&size=" + size;
         }
         urlParam = urlParam + "&sort=" + sort;
+        // 此接口在此处只作为同步更新数据到仿真云数据库,分页查询通过仿真云数据库来查
+        algoPlatformService.getAlgorithmList(urlParam);
+        //2 查询仿真数据库里的数据
+        PageHelper.startPage(page, size);
+        final List<AlgorithmVO> algorithmVOS = algorithmExpandMapper.select(param);
+        PageInfo<AlgorithmVO> objectPageInfo = new PageInfo<>(algorithmVOS);
+        return new ResponseBodyVO<>(ResponseBodyVO.Response.SUCCESS, objectPageInfo);
+//        //解析数据
+//        final String json = algorithmList.getInfo();
+//        Map jsonMap = JsonUtil.jsonToMap(json);
+//        if (CollectionUtil.isNotEmpty(jsonMap)) {
+//            Map<String, Object> dataMap = (Map<String, Object>) jsonMap.get("data");
+//            if (CollectionUtil.isNotEmpty(dataMap)) {
+//                List<Map<String, String>> contentList = (List<Map<String, String>>) dataMap.get("content");
+//                if (CollectionUtil.isNotEmpty(contentList)) {
+//                    totalElements = (Integer) dataMap.get("totalElements");
+//                    if (totalElements > 0) {
+//                        for (Map<String, String> content : contentList) {
+//                            AlgorithmVO vo = new AlgorithmVO();
+//                            String id0 = content.get("id");
+//                            String algorithmId0 = content.get("algorithmId");
+//                            String algorithmName0 = content.get("algorithmName");
+//                            String description0 = content.get("description");
+//                            String evaluationName0 = content.get("evaluationName");
+//                            String teamName0 = content.get("teamName");
+//                            String match0 = content.get("match");
+//                            vo.setId(id0);
+//                            vo.setAlgorithmCode(algorithmId0);
+//                            vo.setAlgorithmName(algorithmName0);
+//                            vo.setDescription(description0);
+//                            vo.setAlgorithmVersion(evaluationName0);
+//                            vo.setTeam(teamName0);
+//                            vo.setTopic(match0);
+//                            vo.setStatus(algorithmExpandMapper.selectStatusByAlgorithmId(algorithmId0));
+//                            vos.add(vo);
+//                        }
+//                    }
+//                } else {
+//                    log.info("算法列表接口返回值中的 data.content 字段为空:" + contentList);
+//                }
+//            } else {
+//                log.info("算法列表接口返回值中的 data 字段为空:" + dataMap);
+//            }
+//        } else {
+//            log.info("算法列表接口返回值为空:" + json);
+//        }
 
-        ResponseBodyVO<String> algorithmList = algoPlatformService.getAlgorithmList(urlParam);
-
-
-        List<AlgorithmVO> vos = new ArrayList<>();
-        int totalElements = 0;
-        //解析数据
-        final String json = algorithmList.getInfo();
-        Map jsonMap = JsonUtil.jsonToMap(json);
-        if (CollectionUtil.isNotEmpty(jsonMap)) {
-            Map<String, Object> dataMap = (Map<String, Object>) jsonMap.get("data");
-            if (CollectionUtil.isNotEmpty(dataMap)) {
-                List<Map<String, String>> contentList = (List<Map<String, String>>) dataMap.get("content");
-                if (CollectionUtil.isNotEmpty(contentList)) {
-                    totalElements = (Integer) dataMap.get("totalElements");
-                    if (totalElements > 0) {
-                        for (Map<String, String> content : contentList) {
-                            AlgorithmVO vo = new AlgorithmVO();
-                            vo.setId(content.get("id"));
-                            vo.setAlgorithmCode(content.get("algorithmId"));
-                            vo.setAlgorithmName(content.get("algorithmName"));
-                            vo.setDescription(content.get("description"));
-                            vos.add(vo);
-                        }
-                    }
-                } else {
-                    log.info("算法列表接口返回值中的 data.content 字段为空:" + contentList);
-                }
-            } else {
-                log.info("算法列表接口返回值中的 data 字段为空:" + dataMap);
-            }
-        } else {
-            log.info("算法列表接口返回值为空:" + json);
-        }
 
-        PageInfo<AlgorithmVO> objectPageInfo = new PageInfo<>(vos);
-        objectPageInfo.setTotal(totalElements);
-        return new ResponseBodyVO<>(ResponseBodyVO.Response.SUCCESS, objectPageInfo);
     }
 
 

+ 6 - 0
simulation-resource-server/src/main/java/com/css/simulation/resource/server/infrastructure/mysql/mapper/AlgorithmExpandMapper.java

@@ -1,7 +1,13 @@
 package com.css.simulation.resource.server.infrastructure.mysql.mapper;
 
+import api.common.pojo.param.algorithm.AlgorithmParameter;
+import api.common.pojo.vo.algorithm.AlgorithmVO;
 import org.apache.ibatis.annotations.Mapper;
 
+import java.util.List;
+
 @Mapper
 public interface AlgorithmExpandMapper {
+
+    List<AlgorithmVO> select(AlgorithmParameter param);
 }

+ 37 - 0
simulation-resource-server/src/main/resources/mysql/mapper/AlgorithmExpandMapper.xml

@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
+<mapper namespace="com.css.simulation.resource.server.infrastructure.mysql.mapper.AlgorithmExpandMapper">
+
+
+    <select id="select" resultType="api.common.pojo.vo.algorithm.AlgorithmVO">
+        select id,
+        algorithm_id algorithm_code,
+        algorithm_name,
+        description,
+        algorithm_type,
+        algorithm_version,
+        team,
+        topic,
+        status
+        from algorithm_expand
+        where 1=1
+        <if test="algorithmName != null and algorithmName != ''">
+            and algorithm_name like concat('%',#{algorithmName},'%')
+        </if>
+        <if test="description != null and description != ''">
+            and description like concat('%',#{description},'%')
+        </if>
+        <if test="algorithmVersion != null and algorithmVersion != ''">
+            and algorithm_version like concat('%',#{algorithmVersion},'%')
+        </if>
+        <if test="team != null and team != ''">
+            and team like concat('%',#{team},'%')
+        </if>
+        <if test="topic != null and topic != ''">
+            and topic like concat('%',#{topic},'%')
+        </if>
+        <if test="status != null and status != ''">
+            and status = #{status}
+        </if>
+    </select>
+</mapper>

+ 0 - 0
simulation-resource-server/src/main/resources/mapper/algorithm/AlgorithmMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/AlgorithmMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/model/CameraMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/CameraMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/system/ClusterMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/ClusterMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/model/ConfigMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/ConfigMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/system/DictMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/DictMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/model/GpsMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/GpsMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/home/HomePageMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/HomePageMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/model/LidarMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/LidarMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/log/LogMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/LogMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/system/MenuMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/MenuMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/model/OgtMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/OgtMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/system/ParameterMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/ParameterMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/system/RoleMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/RoleMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/scene/SceneAccidentMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SceneAccidentMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/scene/SceneGeneralDataMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SceneGeneralDataMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/scene/SceneGeneralExampleMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SceneGeneralExampleMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/scene/SceneGeneralTemplateMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SceneGeneralTemplateMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/system/SceneImportMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SceneImportMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/scene/SceneNaturalMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SceneNaturalMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/scene/ScenePackageMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/ScenePackageMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/scene/ScenePackageSublistMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/ScenePackageSublistMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/scene/SceneStandardsRegulationsMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SceneStandardsRegulationsMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/scene/ScoringRulesMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/ScoringRulesMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/project/SimulationAutomaticProjectMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SimulationAutomaticProjectMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/project/SimulationAutomaticSubProjectMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SimulationAutomaticSubProjectMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/project/SimulationMptFirstTargetScoreMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SimulationMptFirstTargetScoreMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/project/SimulationMptLastTargetScoreMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SimulationMptLastTargetScoreMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/project/SimulationProjectMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SimulationProjectMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/project/SimulationProjectTaskMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SimulationProjectTaskMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/system/SystemScenePackageMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SystemScenePackageMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/system/SystemScenePackageSublistMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SystemScenePackageSublistMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/system/SystemUserSceneMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/SystemUserSceneMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/demo/TestMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/TestMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/system/UserMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/UserMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/model/VehicleMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/VehicleMapper.xml


+ 0 - 0
simulation-resource-server/src/main/resources/mapper/model/VehicleTempMapper.xml → simulation-resource-server/src/main/resources/mysql/mapper/VehicleTempMapper.xml