ty
6 months ago
218 changed files with 3405 additions and 6449 deletions
@ -0,0 +1,102 @@ |
|||||||
|
package com.hnac.hzims.common.enums; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.Getter; |
||||||
|
import org.springblade.core.tool.api.IResultCode; |
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
/** |
||||||
|
* 异常码枚举类 |
||||||
|
*/ |
||||||
|
@Getter |
||||||
|
@AllArgsConstructor |
||||||
|
public enum ExceptionEnum implements IResultCode { |
||||||
|
|
||||||
|
/** |
||||||
|
* 操作成功 |
||||||
|
*/ |
||||||
|
SUCCESS(HttpServletResponse.SC_OK, "操作成功"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 业务异常 |
||||||
|
*/ |
||||||
|
FAILURE(HttpServletResponse.SC_BAD_REQUEST, "业务异常"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 请求未授权 |
||||||
|
*/ |
||||||
|
UN_AUTHORIZED(HttpServletResponse.SC_UNAUTHORIZED, "请求未授权"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 客户端请求未授权 |
||||||
|
*/ |
||||||
|
CLIENT_UN_AUTHORIZED(HttpServletResponse.SC_UNAUTHORIZED, "客户端请求未授权"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 404 没找到请求 |
||||||
|
*/ |
||||||
|
NOT_FOUND(HttpServletResponse.SC_NOT_FOUND, "404 没找到请求"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 消息不能读取 |
||||||
|
*/ |
||||||
|
MSG_NOT_READABLE(HttpServletResponse.SC_BAD_REQUEST, "消息不能读取"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 不支持当前请求方法 |
||||||
|
*/ |
||||||
|
METHOD_NOT_SUPPORTED(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "不支持当前请求方法"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 不支持当前媒体类型 |
||||||
|
*/ |
||||||
|
MEDIA_TYPE_NOT_SUPPORTED(HttpServletResponse.SC_UNSUPPORTED_MEDIA_TYPE, "不支持当前媒体类型"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 请求被拒绝 |
||||||
|
*/ |
||||||
|
REQ_REJECT(HttpServletResponse.SC_FORBIDDEN, "请求被拒绝"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 服务器异常 |
||||||
|
*/ |
||||||
|
INTERNAL_SERVER_ERROR(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, "服务器异常"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 缺少必要的请求参数 |
||||||
|
*/ |
||||||
|
PARAM_MISS(HttpServletResponse.SC_BAD_REQUEST, "缺少必要的请求参数"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 请求参数类型错误 |
||||||
|
*/ |
||||||
|
PARAM_TYPE_ERROR(HttpServletResponse.SC_BAD_REQUEST, "请求参数类型错误"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 请求参数绑定错误 |
||||||
|
*/ |
||||||
|
PARAM_BIND_ERROR(HttpServletResponse.SC_BAD_REQUEST, "请求参数绑定错误"), |
||||||
|
|
||||||
|
/** |
||||||
|
* 参数校验失败 |
||||||
|
*/ |
||||||
|
PARAM_VALID_ERROR(HttpServletResponse.SC_BAD_REQUEST, "参数校验失败"), |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 模拟数据失败 |
||||||
|
*/ |
||||||
|
SIMULATE_ERROR(400, "模拟数据失败"), |
||||||
|
|
||||||
|
; |
||||||
|
|
||||||
|
/** |
||||||
|
* code编码 |
||||||
|
*/ |
||||||
|
final int code; |
||||||
|
/** |
||||||
|
* 中文信息描述 |
||||||
|
*/ |
||||||
|
final String message; |
||||||
|
} |
@ -1,12 +0,0 @@ |
|||||||
package com.hnac.hzims.bigmodel.interactive.constants; |
|
||||||
|
|
||||||
import lombok.Data; |
|
||||||
|
|
||||||
/** |
|
||||||
* @Author: huangxing |
|
||||||
* @Date: 2024/05/09 16:32 |
|
||||||
*/ |
|
||||||
@Data |
|
||||||
public class StationSelectionVO extends SelectionVO { |
|
||||||
|
|
||||||
} |
|
@ -0,0 +1,16 @@ |
|||||||
|
package com.hnac.hzims.bigmodel.interactive.vo; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: huangxing |
||||||
|
* @Date: 2024/05/16 15:10 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode |
||||||
|
public class FaultSelectionVO extends SelectionVO implements Serializable { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,16 @@ |
|||||||
|
package com.hnac.hzims.bigmodel.interactive.vo; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: huangxing |
||||||
|
* @Date: 2024/05/11 16:21 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode |
||||||
|
public class ScadaSelectionVO extends SelectionVO implements Serializable { |
||||||
|
|
||||||
|
} |
@ -1,4 +1,4 @@ |
|||||||
package com.hnac.hzims.bigmodel.interactive.constants; |
package com.hnac.hzims.bigmodel.interactive.vo; |
||||||
|
|
||||||
import lombok.Data; |
import lombok.Data; |
||||||
|
|
@ -0,0 +1,15 @@ |
|||||||
|
package com.hnac.hzims.bigmodel.interactive.vo; |
||||||
|
|
||||||
|
import com.hnac.hzims.bigmodel.interactive.vo.SelectionVO; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: huangxing |
||||||
|
* @Date: 2024/05/09 16:32 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class StationSelectionVO extends SelectionVO implements Serializable { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,16 @@ |
|||||||
|
package com.hnac.hzims.bigmodel.interactive.vo; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: huangxing |
||||||
|
* @Date: 2024/05/11 16:20 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode |
||||||
|
public class VideoSelectionVO extends SelectionVO implements Serializable { |
||||||
|
|
||||||
|
} |
@ -1,238 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> |
|
||||||
<component name="FacetManager"> |
|
||||||
<facet type="web" name="Web"> |
|
||||||
<configuration> |
|
||||||
<webroots /> |
|
||||||
</configuration> |
|
||||||
</facet> |
|
||||||
<facet type="Spring" name="Spring"> |
|
||||||
<configuration /> |
|
||||||
</facet> |
|
||||||
</component> |
|
||||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8"> |
|
||||||
<output url="file://$MODULE_DIR$/target/classes" /> |
|
||||||
<output-test url="file://$MODULE_DIR$/target/test-classes" /> |
|
||||||
<content url="file://$MODULE_DIR$"> |
|
||||||
<excludeFolder url="file://$MODULE_DIR$/target" /> |
|
||||||
</content> |
|
||||||
<orderEntry type="inheritedJdk" /> |
|
||||||
<orderEntry type="sourceFolder" forTests="false" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-mybatis:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-extension:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-core:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-annotation:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.github.jsqlparser:jsqlparser:3.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis-spring:2.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis:3.5.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis-typehandlers-jsr310:1.0.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jdbc:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: ch.qos.logback:logback-classic:1.2.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: ch.qos.logback:logback-core:1.2.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-to-slf4j:2.17.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-api:2.17.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.30" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.annotation:javax.annotation-api:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.yaml:snakeyaml:1.23" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.zaxxer:HikariCP:3.2.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-jdbc:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-tx:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-auth:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-tool:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jsoup:jsoup:1.12.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-core:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-api:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-runtime:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-collectionschema:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-jwt:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-redis:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-redis:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-keyvalue:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-oxm:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: redis.clients:jedis:2.9.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.commons:commons-pool2:2.6.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.jsonwebtoken:jjwt:0.9.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-log:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-cloud:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-stream:2.1.4.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-validation:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:9.0.37" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-messaging:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-core:5.1.12.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.projectreactor:reactor-core:3.2.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-jmx:5.1.12.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-tuple:1.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.esotericsoftware:kryo-shaded:3.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.esotericsoftware:minlog:1.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-tuple:1.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-function-context:2.0.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-function-core:2.0.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-okhttp:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.squareup.okhttp3:okhttp:3.14.5" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.squareup.okio:okio:1.17.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-hystrix:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-hystrix:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-archaius:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-serialization:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.fasterxml.jackson.module:jackson-module-afterburner:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-metrics-event-stream:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-javanica:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.8.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.ow2.asm:asm:5.0.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.reactivex:rxjava-reactive-streams:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.reactivestreams:reactive-streams:1.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-actuator:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.micrometer:micrometer-core:1.1.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.latencyutils:LatencyUtils:2.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery:2.1.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-client:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-common:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-api:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba:fastjson:1.2.73" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-codec:commons-codec:1.11" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.prometheus:simpleclient:0.5.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.spring:spring-context-support:1.0.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-ribbon:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.ribbon:ribbon-transport:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty-contexts:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty-servo:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: javax.inject:javax.inject:1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-core:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-httpclient:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: commons-collections:commons-collections:3.2.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.httpcomponents:httpclient:4.5.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.httpcomponents:httpcore:4.4.13" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: commons-logging:commons-logging:1.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey:jersey-client:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey:jersey-core:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: javax.ws.rs:jsr311-api:1.1.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey.contribs:jersey-apache-client4:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.servo:servo-core:0.12.21" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.netflix-commons:netflix-commons-util:0.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-loadbalancer:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.netflix-commons:netflix-statistics:0.1.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter:5.5.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter-api:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apiguardian:apiguardian-api:1.0.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.opentest4j:opentest4j:1.1.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.platform:junit-platform-commons:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter-params:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.junit.jupiter:junit-jupiter-engine:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.junit.platform:junit-platform-engine:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mockito:mockito-junit-jupiter:2.23.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config:2.1.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.logstash.logback:logstash-logback-encoder:6.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.codehaus.janino:janino:3.0.15" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.codehaus.janino:commons-compiler:3.0.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-aop:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-aop:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.aspectj:aspectjweaver:1.9.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.retry:spring-retry:1.2.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-core:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-jcl:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-tenant:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-cache:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-cache:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-context-support:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:dynamic-datasource-spring-boot-starter:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-openfeign:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-context:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.security:spring-security-rsa:1.0.9.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcpkix-jdk15on:1.59" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcprov-jdk15on:1.59" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-openfeign-core:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-ribbon:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-archaius:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign.form:feign-form-spring:3.8.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign.form:feign-form:3.8.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-fileupload:commons-fileupload:1.3.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-io:commons-io:2.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-web:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-beans:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-commons:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.security:spring-security-crypto:5.1.11.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-core:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-slf4j:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-hystrix:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.archaius:archaius-core:0.7.6" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.google.code.findbugs:jsr305:3.0.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-configuration:commons-configuration:1.8" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-lang:commons-lang:2.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-core:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.reactivex:rxjava:1.3.8" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.hdrhistogram:HdrHistogram:2.1.9" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger2:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.swagger:swagger-annotations:1.5.20" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-spi:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-core:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy:1.9.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-schema:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger-common:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-spring-web:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.google.guava:guava:20.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml:classmate:1.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-context:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-expression:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mapstruct:mapstruct:1.2.0.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.swagger:swagger-models:1.5.21" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="PROVIDED" name="Maven: org.springblade:blade-core-auto:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.projectlombok:lombok:1.18.12" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springblade:blade-core-test:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-launch:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-json:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.hibernate.validator:hibernate-validator:6.0.20.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.validation:validation-api:2.0.1.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.3.3.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-webmvc:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-undertow:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-core:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.xnio:xnio-api:3.3.8.Final" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.jboss.xnio:xnio-nio:3.3.8.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-servlet:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.spec.javax.annotation:jboss-annotations-api_1.2_spec:1.0.2.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-websockets-jsr:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.spec.javax.websocket:jboss-websocket-api_1.1_spec:1.1.4.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.servlet:javax.servlet-api:4.0.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.glassfish:javax.el:3.0.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-starter-test:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: com.jayway.jsonpath:json-path:2.4.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: net.minidev:json-smart:2.3" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: net.minidev:accessors-smart:1.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.assertj:assertj-core:3.11.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mockito:mockito-core:2.23.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy-agent:1.9.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.objenesis:objenesis:2.6" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-library:1.3" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.skyscreamer:jsonassert:1.5.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: com.vaadin.external.google:android-json:0.0.20131108.vaadin1" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework:spring-test:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.xmlunit:xmlunit-core:2.6.4" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: javax.xml.bind:jaxb-api:2.3.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: javax.activation:javax.activation-api:1.2.0" level="project" /> |
|
||||||
</component> |
|
||||||
</module> |
|
@ -0,0 +1,16 @@ |
|||||||
|
package com.hnac.hzims.safeproduct.vo; |
||||||
|
|
||||||
|
import cn.afterturn.easypoi.entity.ImageEntity; |
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Data |
||||||
|
@ApiModel(value = "演练记录表VO类") |
||||||
|
public class RehearsalRecordDetailImgVO extends RehearsalRecordDetailVO{ |
||||||
|
|
||||||
|
@ApiModelProperty("图片列表") |
||||||
|
private List<ImageEntity> images; |
||||||
|
} |
@ -0,0 +1,15 @@ |
|||||||
|
package com.hnac.hzims.safeproduct.vo; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Data |
||||||
|
@ApiModel(value = "演练记录表VO类") |
||||||
|
public class RehearsalRecordDetailStrVO extends RehearsalRecordDetailVO{ |
||||||
|
|
||||||
|
@ApiModelProperty("图片列表") |
||||||
|
private List<String> images; |
||||||
|
} |
@ -1,16 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
||||||
<parent> |
|
||||||
<artifactId>hzims-service-api</artifactId> |
|
||||||
<groupId>com.hnac.hzims</groupId> |
|
||||||
<version>4.0.0-SNAPSHOT</version> |
|
||||||
</parent> |
|
||||||
<modelVersion>4.0.0</modelVersion> |
|
||||||
|
|
||||||
<artifactId>spare-api</artifactId> |
|
||||||
<name>${project.artifactId}</name> |
|
||||||
<packaging>jar</packaging> |
|
||||||
|
|
||||||
</project> |
|
@ -1,226 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> |
|
||||||
<component name="FacetManager"> |
|
||||||
<facet type="web" name="Web"> |
|
||||||
<configuration> |
|
||||||
<webroots /> |
|
||||||
</configuration> |
|
||||||
</facet> |
|
||||||
<facet type="Spring" name="Spring"> |
|
||||||
<configuration /> |
|
||||||
</facet> |
|
||||||
</component> |
|
||||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8"> |
|
||||||
<output url="file://$MODULE_DIR$/target/classes" /> |
|
||||||
<output-test url="file://$MODULE_DIR$/target/test-classes" /> |
|
||||||
<content url="file://$MODULE_DIR$"> |
|
||||||
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> |
|
||||||
<excludeFolder url="file://$MODULE_DIR$/target" /> |
|
||||||
</content> |
|
||||||
<orderEntry type="inheritedJdk" /> |
|
||||||
<orderEntry type="sourceFolder" forTests="false" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-mybatis:4.5.3.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-extension:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-core:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-annotation:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.github.jsqlparser:jsqlparser:3.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis-spring:2.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis:3.5.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis-typehandlers-jsr310:1.0.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jdbc:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: ch.qos.logback:logback-classic:1.2.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: ch.qos.logback:logback-core:1.2.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-to-slf4j:2.17.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-api:2.17.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.30" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.annotation:javax.annotation-api:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.yaml:snakeyaml:1.23" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.zaxxer:HikariCP:3.2.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-jdbc:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-tx:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-auth:4.5.3.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-tool:4.5.3.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-launch:4.5.3.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-json:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.hibernate.validator:hibernate-validator:6.0.20.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.validation:validation-api:2.0.1.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.3.3.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-webmvc:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-undertow:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-core:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.xnio:xnio-api:3.3.8.Final" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.jboss.xnio:xnio-nio:3.3.8.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-servlet:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.spec.javax.annotation:jboss-annotations-api_1.2_spec:1.0.2.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-websockets-jsr:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.spec.javax.websocket:jboss-websocket-api_1.1_spec:1.1.4.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.servlet:javax.servlet-api:4.0.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.glassfish:javax.el:3.0.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jsoup:jsoup:1.12.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-core:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-api:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-runtime:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-collectionschema:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-jwt:4.5.3.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-redis:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-redis:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-keyvalue:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-oxm:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.lettuce:lettuce-core:5.1.8.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.netty:netty-common:4.1.51.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.netty:netty-handler:4.1.51.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.netty:netty-resolver:4.1.51.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.netty:netty-buffer:4.1.51.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.netty:netty-codec:4.1.51.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.netty:netty-transport:4.1.51.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.projectreactor:reactor-core:3.2.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.jsonwebtoken:jjwt:0.9.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-log:4.5.3.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-cloud:4.5.3.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-stream:2.1.4.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-validation:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:9.0.37" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-messaging:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-core:5.1.12.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-jmx:5.1.12.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-tuple:1.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.esotericsoftware:kryo-shaded:3.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.esotericsoftware:minlog:1.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.objenesis:objenesis:2.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-tuple:1.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-function-context:2.0.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-function-core:2.0.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-okhttp:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.squareup.okhttp3:okhttp:3.14.5" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.squareup.okio:okio:1.17.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-hystrix:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-hystrix:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-archaius:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-serialization:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.fasterxml.jackson.module:jackson-module-afterburner:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-metrics-event-stream:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-javanica:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.8.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.ow2.asm:asm:5.0.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.reactivex:rxjava-reactive-streams:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.reactivestreams:reactive-streams:1.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-actuator:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.micrometer:micrometer-core:1.1.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.latencyutils:LatencyUtils:2.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery:2.1.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-client:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-common:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-api:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba:fastjson:1.2.73" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-codec:commons-codec:1.11" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.prometheus:simpleclient:0.5.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.spring:spring-context-support:1.0.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-ribbon:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.ribbon:ribbon-transport:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty-contexts:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty-servo:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: javax.inject:javax.inject:1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-core:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-httpclient:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: commons-collections:commons-collections:3.2.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.httpcomponents:httpclient:4.5.12" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.httpcomponents:httpcore:4.4.13" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey:jersey-client:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey:jersey-core:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: javax.ws.rs:jsr311-api:1.1.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey.contribs:jersey-apache-client4:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.servo:servo-core:0.12.21" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.netflix-commons:netflix-commons-util:0.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-loadbalancer:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.netflix-commons:netflix-statistics:0.1.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter:5.5.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter-api:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apiguardian:apiguardian-api:1.0.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.opentest4j:opentest4j:1.1.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.platform:junit-platform-commons:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter-params:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.junit.jupiter:junit-jupiter-engine:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.junit.platform:junit-platform-engine:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mockito:mockito-junit-jupiter:2.23.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mockito:mockito-core:2.23.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy-agent:1.9.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config:2.1.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.logstash.logback:logstash-logback-encoder:6.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.codehaus.janino:janino:3.0.15" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.codehaus.janino:commons-compiler:3.0.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-aop:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-aop:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.aspectj:aspectjweaver:1.9.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.retry:spring-retry:1.2.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-core:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-jcl:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-tenant:4.5.3.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-cache:4.5.3.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-cache:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-context-support:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:dynamic-datasource-spring-boot-starter:3.2.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-openfeign:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-context:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.security:spring-security-rsa:1.0.9.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcpkix-jdk15on:1.59" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcprov-jdk15on:1.59" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-openfeign-core:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-ribbon:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-archaius:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign.form:feign-form-spring:3.8.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign.form:feign-form:3.8.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-fileupload:commons-fileupload:1.3.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-io:commons-io:2.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-web:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-beans:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-commons:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.security:spring-security-crypto:5.1.11.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-core:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-slf4j:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-hystrix:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.archaius:archaius-core:0.7.6" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.google.code.findbugs:jsr305:3.0.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-configuration:commons-configuration:1.8" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-lang:commons-lang:2.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-core:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.reactivex:rxjava:1.3.8" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.hdrhistogram:HdrHistogram:2.1.9" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger2:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.swagger:swagger-annotations:1.5.20" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-spi:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-core:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy:1.9.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-schema:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger-common:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-spring-web:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.google.guava:guava:20.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml:classmate:1.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-context:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-expression:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mapstruct:mapstruct:1.2.0.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.swagger:swagger-models:1.5.21" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="PROVIDED" name="Maven: org.springblade:blade-core-auto:4.5.3.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="PROVIDED" name="Maven: org.projectlombok:lombok:1.18.12" level="project" /> |
|
||||||
</component> |
|
||||||
</module> |
|
@ -1,64 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are met: |
|
||||||
* |
|
||||||
* Redistributions of source code must retain the above copyright notice, |
|
||||||
* this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer in the |
|
||||||
* documentation and/or other materials provided with the distribution. |
|
||||||
* Neither the name of the dreamlu.net developer nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* Author: Chill 庄骞 (smallchill@163.com) |
|
||||||
*/ |
|
||||||
package com.hnac.hzims.spare.entity; |
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName; |
|
||||||
import io.swagger.annotations.ApiModelProperty; |
|
||||||
import lombok.Data; |
|
||||||
import lombok.EqualsAndHashCode; |
|
||||||
import org.springblade.core.mp.base.BaseEntity; |
|
||||||
|
|
||||||
import java.util.Date; |
|
||||||
|
|
||||||
/** |
|
||||||
* 实体类 |
|
||||||
* |
|
||||||
* @author Chill |
|
||||||
*/ |
|
||||||
@Data |
|
||||||
@TableName("blade_notice") |
|
||||||
@EqualsAndHashCode(callSuper = true) |
|
||||||
public class Notice extends BaseEntity { |
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L; |
|
||||||
|
|
||||||
/** |
|
||||||
* 标题 |
|
||||||
*/ |
|
||||||
@ApiModelProperty(value = "标题") |
|
||||||
private String title; |
|
||||||
|
|
||||||
/** |
|
||||||
* 通知类型 |
|
||||||
*/ |
|
||||||
@ApiModelProperty(value = "通知类型") |
|
||||||
private Integer category; |
|
||||||
|
|
||||||
/** |
|
||||||
* 发布日期 |
|
||||||
*/ |
|
||||||
@ApiModelProperty(value = "发布日期") |
|
||||||
private Date releaseTime; |
|
||||||
|
|
||||||
/** |
|
||||||
* 内容 |
|
||||||
*/ |
|
||||||
@ApiModelProperty(value = "内容") |
|
||||||
private String content; |
|
||||||
|
|
||||||
|
|
||||||
} |
|
@ -1,50 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are met: |
|
||||||
* |
|
||||||
* Redistributions of source code must retain the above copyright notice, |
|
||||||
* this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer in the |
|
||||||
* documentation and/or other materials provided with the distribution. |
|
||||||
* Neither the name of the dreamlu.net developer nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* Author: Chill 庄骞 (smallchill@163.com) |
|
||||||
*/ |
|
||||||
package com.hnac.hzims.spare.feign; |
|
||||||
|
|
||||||
import org.springblade.core.launch.constant.AppConstant; |
|
||||||
import org.springblade.core.tool.api.R; |
|
||||||
import com.hnac.hzims.spare.entity.Notice; |
|
||||||
import org.springframework.cloud.openfeign.FeignClient; |
|
||||||
import org.springframework.web.bind.annotation.GetMapping; |
|
||||||
import org.springframework.web.bind.annotation.RequestParam; |
|
||||||
|
|
||||||
import java.util.List; |
|
||||||
|
|
||||||
/** |
|
||||||
* Notice Feign接口类 |
|
||||||
* |
|
||||||
* @author Chill |
|
||||||
*/ |
|
||||||
@FeignClient( |
|
||||||
value = AppConstant.APPLICATION_DESK_NAME |
|
||||||
) |
|
||||||
public interface INoticeClient { |
|
||||||
|
|
||||||
String API_PREFIX = "/client"; |
|
||||||
String TOP = API_PREFIX + "/top"; |
|
||||||
|
|
||||||
/** |
|
||||||
* 获取notice列表 |
|
||||||
* |
|
||||||
* @param number |
|
||||||
* @return |
|
||||||
*/ |
|
||||||
@GetMapping(TOP) |
|
||||||
R<List<Notice>> top(@RequestParam("number") Integer number); |
|
||||||
|
|
||||||
} |
|
@ -1,20 +0,0 @@ |
|||||||
package com.hnac.hzims.spare.vo; |
|
||||||
|
|
||||||
import io.swagger.annotations.ApiModelProperty; |
|
||||||
import lombok.Data; |
|
||||||
import lombok.EqualsAndHashCode; |
|
||||||
import com.hnac.hzims.spare.entity.Notice; |
|
||||||
|
|
||||||
/** |
|
||||||
* 通知公告视图类 |
|
||||||
* |
|
||||||
* @author Chill |
|
||||||
*/ |
|
||||||
@Data |
|
||||||
@EqualsAndHashCode(callSuper = true) |
|
||||||
public class NoticeVO extends Notice { |
|
||||||
|
|
||||||
@ApiModelProperty(value = "通知类型名") |
|
||||||
private String categoryName; |
|
||||||
|
|
||||||
} |
|
@ -1,239 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> |
|
||||||
<component name="FacetManager"> |
|
||||||
<facet type="web" name="Web"> |
|
||||||
<configuration> |
|
||||||
<webroots /> |
|
||||||
</configuration> |
|
||||||
</facet> |
|
||||||
<facet type="Spring" name="Spring"> |
|
||||||
<configuration /> |
|
||||||
</facet> |
|
||||||
</component> |
|
||||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8"> |
|
||||||
<output url="file://$MODULE_DIR$/target/classes" /> |
|
||||||
<output-test url="file://$MODULE_DIR$/target/test-classes" /> |
|
||||||
<content url="file://$MODULE_DIR$"> |
|
||||||
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> |
|
||||||
<excludeFolder url="file://$MODULE_DIR$/target" /> |
|
||||||
</content> |
|
||||||
<orderEntry type="inheritedJdk" /> |
|
||||||
<orderEntry type="sourceFolder" forTests="false" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-mybatis:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-extension:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-core:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-annotation:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.github.jsqlparser:jsqlparser:3.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis-spring:2.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis:3.5.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis-typehandlers-jsr310:1.0.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jdbc:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: ch.qos.logback:logback-classic:1.2.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: ch.qos.logback:logback-core:1.2.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-to-slf4j:2.17.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-api:2.17.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.30" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.annotation:javax.annotation-api:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.yaml:snakeyaml:1.23" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.zaxxer:HikariCP:3.2.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-jdbc:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-tx:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-auth:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-tool:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jsoup:jsoup:1.12.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-core:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-api:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-runtime:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-collectionschema:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-jwt:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-redis:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-redis:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-keyvalue:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-oxm:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: redis.clients:jedis:2.9.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.commons:commons-pool2:2.6.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.jsonwebtoken:jjwt:0.9.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-log:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-cloud:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-stream:2.1.4.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-validation:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:9.0.37" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-messaging:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-core:5.1.12.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.projectreactor:reactor-core:3.2.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-jmx:5.1.12.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-tuple:1.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.esotericsoftware:kryo-shaded:3.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.esotericsoftware:minlog:1.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-tuple:1.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-function-context:2.0.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-function-core:2.0.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-okhttp:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.squareup.okhttp3:okhttp:3.14.5" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.squareup.okio:okio:1.17.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-hystrix:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-hystrix:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-archaius:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-serialization:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.fasterxml.jackson.module:jackson-module-afterburner:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-metrics-event-stream:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-javanica:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.8.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.ow2.asm:asm:5.0.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.reactivex:rxjava-reactive-streams:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.reactivestreams:reactive-streams:1.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-actuator:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.micrometer:micrometer-core:1.1.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.latencyutils:LatencyUtils:2.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery:2.1.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-client:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-common:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-api:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba:fastjson:1.2.73" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-codec:commons-codec:1.11" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.prometheus:simpleclient:0.5.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.spring:spring-context-support:1.0.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-ribbon:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.ribbon:ribbon-transport:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty-contexts:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty-servo:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: javax.inject:javax.inject:1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-core:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-httpclient:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: commons-collections:commons-collections:3.2.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.httpcomponents:httpclient:4.5.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.httpcomponents:httpcore:4.4.13" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: commons-logging:commons-logging:1.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey:jersey-client:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey:jersey-core:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: javax.ws.rs:jsr311-api:1.1.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey.contribs:jersey-apache-client4:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.servo:servo-core:0.12.21" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.netflix-commons:netflix-commons-util:0.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-loadbalancer:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.netflix-commons:netflix-statistics:0.1.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter:5.5.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter-api:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apiguardian:apiguardian-api:1.0.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.opentest4j:opentest4j:1.1.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.platform:junit-platform-commons:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter-params:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.junit.jupiter:junit-jupiter-engine:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.junit.platform:junit-platform-engine:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mockito:mockito-junit-jupiter:2.23.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config:2.1.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.logstash.logback:logstash-logback-encoder:6.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.codehaus.janino:janino:3.0.15" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.codehaus.janino:commons-compiler:3.0.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-aop:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-aop:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.aspectj:aspectjweaver:1.9.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.retry:spring-retry:1.2.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-core:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-jcl:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-tenant:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-cache:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-cache:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-context-support:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:dynamic-datasource-spring-boot-starter:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-openfeign:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-context:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.security:spring-security-rsa:1.0.9.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcpkix-jdk15on:1.59" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcprov-jdk15on:1.59" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-openfeign-core:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-ribbon:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-archaius:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign.form:feign-form-spring:3.8.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign.form:feign-form:3.8.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-fileupload:commons-fileupload:1.3.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-io:commons-io:2.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-web:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-beans:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-commons:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.security:spring-security-crypto:5.1.11.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-core:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-slf4j:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-hystrix:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.archaius:archaius-core:0.7.6" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.google.code.findbugs:jsr305:3.0.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-configuration:commons-configuration:1.8" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-lang:commons-lang:2.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-core:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.reactivex:rxjava:1.3.8" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.hdrhistogram:HdrHistogram:2.1.9" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger2:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.swagger:swagger-annotations:1.5.20" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-spi:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-core:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy:1.9.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-schema:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger-common:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-spring-web:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.google.guava:guava:20.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml:classmate:1.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-context:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-expression:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mapstruct:mapstruct:1.2.0.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.swagger:swagger-models:1.5.21" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="PROVIDED" name="Maven: org.springblade:blade-core-auto:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.projectlombok:lombok:1.18.12" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springblade:blade-core-test:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-launch:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-json:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.hibernate.validator:hibernate-validator:6.0.20.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.validation:validation-api:2.0.1.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.3.3.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-webmvc:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-undertow:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-core:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.xnio:xnio-api:3.3.8.Final" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.jboss.xnio:xnio-nio:3.3.8.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-servlet:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.spec.javax.annotation:jboss-annotations-api_1.2_spec:1.0.2.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-websockets-jsr:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.spec.javax.websocket:jboss-websocket-api_1.1_spec:1.1.4.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.servlet:javax.servlet-api:4.0.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.glassfish:javax.el:3.0.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-starter-test:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: com.jayway.jsonpath:json-path:2.4.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: net.minidev:json-smart:2.3" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: net.minidev:accessors-smart:1.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.assertj:assertj-core:3.11.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mockito:mockito-core:2.23.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy-agent:1.9.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.objenesis:objenesis:2.6" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-library:1.3" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.skyscreamer:jsonassert:1.5.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: com.vaadin.external.google:android-json:0.0.20131108.vaadin1" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework:spring-test:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.xmlunit:xmlunit-core:2.6.4" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: javax.xml.bind:jaxb-api:2.3.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: javax.activation:javax.activation-api:1.2.0" level="project" /> |
|
||||||
</component> |
|
||||||
</module> |
|
@ -1,239 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> |
|
||||||
<component name="FacetManager"> |
|
||||||
<facet type="web" name="Web"> |
|
||||||
<configuration> |
|
||||||
<webroots /> |
|
||||||
</configuration> |
|
||||||
</facet> |
|
||||||
<facet type="Spring" name="Spring"> |
|
||||||
<configuration /> |
|
||||||
</facet> |
|
||||||
</component> |
|
||||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8"> |
|
||||||
<output url="file://$MODULE_DIR$/target/classes" /> |
|
||||||
<output-test url="file://$MODULE_DIR$/target/test-classes" /> |
|
||||||
<content url="file://$MODULE_DIR$"> |
|
||||||
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> |
|
||||||
<excludeFolder url="file://$MODULE_DIR$/target" /> |
|
||||||
</content> |
|
||||||
<orderEntry type="inheritedJdk" /> |
|
||||||
<orderEntry type="sourceFolder" forTests="false" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-mybatis:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-extension:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-core:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-annotation:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.github.jsqlparser:jsqlparser:3.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis-spring:2.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis:3.5.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis-typehandlers-jsr310:1.0.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jdbc:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: ch.qos.logback:logback-classic:1.2.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: ch.qos.logback:logback-core:1.2.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-to-slf4j:2.17.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-api:2.17.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.30" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.annotation:javax.annotation-api:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.yaml:snakeyaml:1.23" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.zaxxer:HikariCP:3.2.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-jdbc:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-tx:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-auth:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-tool:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jsoup:jsoup:1.12.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-core:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-api:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-runtime:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-collectionschema:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-jwt:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-redis:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-redis:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-keyvalue:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-oxm:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: redis.clients:jedis:2.9.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.commons:commons-pool2:2.6.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.jsonwebtoken:jjwt:0.9.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-log:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-cloud:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-stream:2.1.4.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-validation:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:9.0.37" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-messaging:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-core:5.1.12.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.projectreactor:reactor-core:3.2.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-jmx:5.1.12.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-tuple:1.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.esotericsoftware:kryo-shaded:3.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.esotericsoftware:minlog:1.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-tuple:1.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-function-context:2.0.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-function-core:2.0.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-okhttp:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.squareup.okhttp3:okhttp:3.14.5" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.squareup.okio:okio:1.17.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-hystrix:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-hystrix:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-archaius:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-serialization:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.fasterxml.jackson.module:jackson-module-afterburner:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-metrics-event-stream:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-javanica:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.8.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.ow2.asm:asm:5.0.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.reactivex:rxjava-reactive-streams:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.reactivestreams:reactive-streams:1.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-actuator:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.micrometer:micrometer-core:1.1.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.latencyutils:LatencyUtils:2.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery:2.1.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-client:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-common:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-api:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba:fastjson:1.2.73" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-codec:commons-codec:1.11" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.prometheus:simpleclient:0.5.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.spring:spring-context-support:1.0.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-ribbon:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.ribbon:ribbon-transport:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty-contexts:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty-servo:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: javax.inject:javax.inject:1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-core:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-httpclient:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: commons-collections:commons-collections:3.2.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.httpcomponents:httpclient:4.5.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.httpcomponents:httpcore:4.4.13" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: commons-logging:commons-logging:1.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey:jersey-client:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey:jersey-core:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: javax.ws.rs:jsr311-api:1.1.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey.contribs:jersey-apache-client4:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.servo:servo-core:0.12.21" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.netflix-commons:netflix-commons-util:0.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-loadbalancer:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.netflix-commons:netflix-statistics:0.1.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter:5.5.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter-api:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apiguardian:apiguardian-api:1.0.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.opentest4j:opentest4j:1.1.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.platform:junit-platform-commons:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter-params:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.junit.jupiter:junit-jupiter-engine:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.junit.platform:junit-platform-engine:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mockito:mockito-junit-jupiter:2.23.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config:2.1.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.logstash.logback:logstash-logback-encoder:6.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.codehaus.janino:janino:3.0.15" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.codehaus.janino:commons-compiler:3.0.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-aop:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-aop:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.aspectj:aspectjweaver:1.9.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.retry:spring-retry:1.2.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-core:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-jcl:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-tenant:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-cache:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-cache:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-context-support:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:dynamic-datasource-spring-boot-starter:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-openfeign:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-context:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.security:spring-security-rsa:1.0.9.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcpkix-jdk15on:1.59" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcprov-jdk15on:1.59" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-openfeign-core:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-ribbon:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-archaius:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign.form:feign-form-spring:3.8.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign.form:feign-form:3.8.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-fileupload:commons-fileupload:1.3.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-io:commons-io:2.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-web:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-beans:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-commons:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.security:spring-security-crypto:5.1.11.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-core:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-slf4j:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-hystrix:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.archaius:archaius-core:0.7.6" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.google.code.findbugs:jsr305:3.0.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-configuration:commons-configuration:1.8" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-lang:commons-lang:2.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-core:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.reactivex:rxjava:1.3.8" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.hdrhistogram:HdrHistogram:2.1.9" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger2:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.swagger:swagger-annotations:1.5.20" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-spi:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-core:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy:1.9.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-schema:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger-common:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-spring-web:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.google.guava:guava:20.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml:classmate:1.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-context:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-expression:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mapstruct:mapstruct:1.2.0.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.swagger:swagger-models:1.5.21" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="PROVIDED" name="Maven: org.springblade:blade-core-auto:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.projectlombok:lombok:1.18.12" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springblade:blade-core-test:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-launch:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-json:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.hibernate.validator:hibernate-validator:6.0.20.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.validation:validation-api:2.0.1.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.3.3.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-webmvc:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-undertow:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-core:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.xnio:xnio-api:3.3.8.Final" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.jboss.xnio:xnio-nio:3.3.8.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-servlet:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.spec.javax.annotation:jboss-annotations-api_1.2_spec:1.0.2.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-websockets-jsr:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.spec.javax.websocket:jboss-websocket-api_1.1_spec:1.1.4.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.servlet:javax.servlet-api:4.0.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.glassfish:javax.el:3.0.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-starter-test:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: com.jayway.jsonpath:json-path:2.4.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: net.minidev:json-smart:2.3" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: net.minidev:accessors-smart:1.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.assertj:assertj-core:3.11.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mockito:mockito-core:2.23.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy-agent:1.9.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.objenesis:objenesis:2.6" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-library:1.3" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.skyscreamer:jsonassert:1.5.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: com.vaadin.external.google:android-json:0.0.20131108.vaadin1" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework:spring-test:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.xmlunit:xmlunit-core:2.6.4" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: javax.xml.bind:jaxb-api:2.3.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: javax.activation:javax.activation-api:1.2.0" level="project" /> |
|
||||||
</component> |
|
||||||
</module> |
|
@ -1,239 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> |
|
||||||
<component name="FacetManager"> |
|
||||||
<facet type="web" name="Web"> |
|
||||||
<configuration> |
|
||||||
<webroots /> |
|
||||||
</configuration> |
|
||||||
</facet> |
|
||||||
<facet type="Spring" name="Spring"> |
|
||||||
<configuration /> |
|
||||||
</facet> |
|
||||||
</component> |
|
||||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8"> |
|
||||||
<output url="file://$MODULE_DIR$/target/classes" /> |
|
||||||
<output-test url="file://$MODULE_DIR$/target/test-classes" /> |
|
||||||
<content url="file://$MODULE_DIR$"> |
|
||||||
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> |
|
||||||
<excludeFolder url="file://$MODULE_DIR$/target" /> |
|
||||||
</content> |
|
||||||
<orderEntry type="inheritedJdk" /> |
|
||||||
<orderEntry type="sourceFolder" forTests="false" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-mybatis:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-extension:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-core:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-annotation:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.github.jsqlparser:jsqlparser:3.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis-spring:2.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis:3.5.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mybatis:mybatis-typehandlers-jsr310:1.0.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jdbc:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: ch.qos.logback:logback-classic:1.2.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: ch.qos.logback:logback-core:1.2.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-to-slf4j:2.17.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-api:2.17.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.30" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.annotation:javax.annotation-api:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.yaml:snakeyaml:1.23" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.zaxxer:HikariCP:3.2.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-jdbc:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-tx:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-auth:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-tool:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jsoup:jsoup:1.12.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-core:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-api:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-runtime:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.protostuff:protostuff-collectionschema:1.6.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-jwt:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-redis:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-redis:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-keyvalue:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:2.1.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-oxm:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: redis.clients:jedis:2.9.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.commons:commons-pool2:2.6.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.jsonwebtoken:jjwt:0.9.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-log:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-cloud:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-stream:2.1.4.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-validation:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:9.0.37" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-messaging:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-core:5.1.12.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.projectreactor:reactor-core:3.2.19.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-jmx:5.1.12.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-tuple:1.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.esotericsoftware:kryo-shaded:3.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.esotericsoftware:minlog:1.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.integration:spring-integration-tuple:1.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-function-context:2.0.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-function-core:2.0.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-okhttp:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.squareup.okhttp3:okhttp:3.14.5" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.squareup.okio:okio:1.17.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-hystrix:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-hystrix:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-archaius:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-serialization:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.fasterxml.jackson.module:jackson-module-afterburner:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-metrics-event-stream:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-javanica:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.8.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.ow2.asm:asm:5.0.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.reactivex:rxjava-reactive-streams:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.reactivestreams:reactive-streams:1.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-actuator:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.micrometer:micrometer-core:1.1.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.latencyutils:LatencyUtils:2.0.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery:2.1.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-client:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-common:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-api:1.2.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba:fastjson:1.2.73" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-codec:commons-codec:1.11" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.prometheus:simpleclient:0.5.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.spring:spring-context-support:1.0.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-ribbon:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.ribbon:ribbon-transport:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty-contexts:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty-servo:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: javax.inject:javax.inject:1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: io.reactivex:rxnetty:0.4.9" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-core:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-httpclient:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: commons-collections:commons-collections:3.2.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.httpcomponents:httpclient:4.5.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.httpcomponents:httpcore:4.4.13" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: commons-logging:commons-logging:1.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey:jersey-client:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey:jersey-core:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: javax.ws.rs:jsr311-api:1.1.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.jersey.contribs:jersey-apache-client4:1.19.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.servo:servo-core:0.12.21" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.netflix-commons:netflix-commons-util:0.3.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.ribbon:ribbon-loadbalancer:2.3.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.netflix.netflix-commons:netflix-statistics:0.1.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter:5.5.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter-api:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.apiguardian:apiguardian-api:1.0.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.opentest4j:opentest4j:1.1.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.platform:junit-platform-commons:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.junit.jupiter:junit-jupiter-params:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.junit.jupiter:junit-jupiter-engine:5.3.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.junit.platform:junit-platform-engine:1.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mockito:mockito-junit-jupiter:2.23.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config:2.1.2.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.logstash.logback:logstash-logback-encoder:6.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.codehaus.janino:janino:3.0.15" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.codehaus.janino:commons-compiler:3.0.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-aop:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-aop:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.aspectj:aspectjweaver:1.9.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.retry:spring-retry:1.2.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-core:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-jcl:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-tenant:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-starter-cache:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-cache:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-context-support:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.baomidou:dynamic-datasource-spring-boot-starter:3.3.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-openfeign:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-context:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.security:spring-security-rsa:1.0.9.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcpkix-jdk15on:1.59" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcprov-jdk15on:1.59" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-openfeign-core:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-ribbon:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-archaius:2.1.5.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign.form:feign-form-spring:3.8.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign.form:feign-form:3.8.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-fileupload:commons-fileupload:1.3.3" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-io:commons-io:2.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-web:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-beans:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-commons:2.1.6.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.security:spring-security-crypto:5.1.11.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-core:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-slf4j:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.github.openfeign:feign-hystrix:10.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.archaius:archaius-core:0.7.6" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: com.google.code.findbugs:jsr305:3.0.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-configuration:commons-configuration:1.8" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: commons-lang:commons-lang:2.6" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-core:1.5.18" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.reactivex:rxjava:1.3.8" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.hdrhistogram:HdrHistogram:2.1.9" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger2:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.swagger:swagger-annotations:1.5.20" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-spi:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-core:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy:1.9.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-schema:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger-common:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.springfox:springfox-spring-web:2.9.2" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.google.guava:guava:20.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml:classmate:1.4.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-core:1.2.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-context:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-expression:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mapstruct:mapstruct:1.2.0.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.swagger:swagger-models:1.5.21" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="PROVIDED" name="Maven: org.springblade:blade-core-auto:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.projectlombok:lombok:1.18.12" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springblade:blade-core-test:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springblade:blade-core-launch:5.0.0.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-json:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.0" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.hibernate.validator:hibernate-validator:6.0.20.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.validation:validation-api:2.0.1.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.3.3.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework:spring-webmvc:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-undertow:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-core:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.xnio:xnio-api:3.3.8.Final" level="project" /> |
|
||||||
<orderEntry type="library" scope="RUNTIME" name="Maven: org.jboss.xnio:xnio-nio:3.3.8.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-servlet:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.spec.javax.annotation:jboss-annotations-api_1.2_spec:1.0.2.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: io.undertow:undertow-websockets-jsr:2.0.30.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.jboss.spec.javax.websocket:jboss-websocket-api_1.1_spec:1.1.4.Final" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: javax.servlet:javax.servlet-api:4.0.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.glassfish:javax.el:3.0.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-starter-test:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test-autoconfigure:2.1.16.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: com.jayway.jsonpath:json-path:2.4.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: net.minidev:json-smart:2.3" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: net.minidev:accessors-smart:1.2" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.assertj:assertj-core:3.11.1" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.mockito:mockito-core:2.23.4" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy-agent:1.9.16" level="project" /> |
|
||||||
<orderEntry type="library" name="Maven: org.objenesis:objenesis:2.6" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-library:1.3" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.skyscreamer:jsonassert:1.5.0" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: com.vaadin.external.google:android-json:0.0.20131108.vaadin1" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.springframework:spring-test:5.1.17.RELEASE" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: org.xmlunit:xmlunit-core:2.6.4" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: javax.xml.bind:jaxb-api:2.3.1" level="project" /> |
|
||||||
<orderEntry type="library" scope="TEST" name="Maven: javax.activation:javax.activation-api:1.2.0" level="project" /> |
|
||||||
</component> |
|
||||||
</module> |
|
@ -0,0 +1,22 @@ |
|||||||
|
package com.hnac.hzims.bigmodel.interactive.constants; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.Getter; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: huangxing |
||||||
|
* @Date: 2024/05/21 16:34 |
||||||
|
*/ |
||||||
|
@AllArgsConstructor |
||||||
|
public enum ProjectRemoteTypeEnum { |
||||||
|
/**不允许发送遥控**/ |
||||||
|
NOT_ALLOW(0), |
||||||
|
/**运行发送遥控并且需要校验权限**/ |
||||||
|
VALID(1), |
||||||
|
/**运行发送遥控并免校验权限**/ |
||||||
|
ALLOW(2), |
||||||
|
; |
||||||
|
@Getter |
||||||
|
private Integer ctrlType; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,128 @@ |
|||||||
|
package com.hnac.hzims.bigmodel.interactive.service.impl; |
||||||
|
|
||||||
|
import com.google.common.collect.Lists; |
||||||
|
import com.hnac.hzims.bigmodel.entity.FunctionEntity; |
||||||
|
import com.hnac.hzims.bigmodel.function.service.IFunctionService; |
||||||
|
import com.hnac.hzims.bigmodel.interactive.constants.ProjectRemoteTypeEnum; |
||||||
|
import com.hnac.hzims.bigmodel.interactive.vo.SessionContentVO; |
||||||
|
import com.hnac.hzims.bigmodel.websocket.constants.RedisKeyConstants; |
||||||
|
import com.hnac.hzinfo.sdk.core.response.Result; |
||||||
|
import com.hnac.hzinfo.sdk.v5.project.ProjectClient; |
||||||
|
import com.hnac.hzinfo.sdk.v5.project.vo.ProjectVO; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.log.exception.ServiceException; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.utils.CollectionUtil; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springblade.core.tool.utils.StringUtil; |
||||||
|
import org.springblade.system.dto.DeptStationDTO; |
||||||
|
import org.springblade.system.entity.CtrlAuth; |
||||||
|
import org.springblade.system.feign.IDeptClient; |
||||||
|
import org.springblade.system.feign.IRemoteClient; |
||||||
|
import org.springblade.system.user.feign.IUserClient; |
||||||
|
import org.springframework.data.redis.core.RedisTemplate; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
import org.springframework.util.Assert; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
import java.util.Optional; |
||||||
|
import java.util.stream.Collectors; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: huangxing |
||||||
|
* @Date: 2024/05/21 16:10 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@AllArgsConstructor |
||||||
|
public class AuthenticationService { |
||||||
|
|
||||||
|
private final IDeptClient deptClient; |
||||||
|
private final IFunctionService functionService; |
||||||
|
private final IUserClient userClient; |
||||||
|
private final ProjectClient projectClient; |
||||||
|
private final IRemoteClient remoteClient; |
||||||
|
private final RedisTemplate redisTemplate; |
||||||
|
|
||||||
|
/** |
||||||
|
* 站点鉴权 |
||||||
|
* @param stationId 站点ID |
||||||
|
* @param userId 用户ID |
||||||
|
*/ |
||||||
|
public void stationAuthentication(String stationId, String userId) { |
||||||
|
List<String> stations = this.getStationPermissionsById(userId).stream().map(DeptStationDTO::getStationId) |
||||||
|
.filter(StringUtil::isNotBlank).filter(Func::isNotEmpty).collect(Collectors.toList()); |
||||||
|
Assert.isTrue(stations.contains(stationId),() -> { |
||||||
|
throw new ServiceException("人员站点鉴权失败!"); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 菜单鉴权 |
||||||
|
* @param userId 用户ID |
||||||
|
* @param func 函数编号 |
||||||
|
*/ |
||||||
|
public void menuAuthentication(String userId, String func) { |
||||||
|
FunctionEntity function = functionService.getFunctionByCode(func); |
||||||
|
if(Func.isNotEmpty(function) && Func.isNotEmpty(function.getRoute()) && StringUtil.isNotBlank(function.getRoute())) { |
||||||
|
R<Boolean> authenticationR = userClient.permissionMenuById(Long.valueOf(userId), function.getRoute()); |
||||||
|
Assert.isTrue(authenticationR.isSuccess() && authenticationR.getData(), () -> { |
||||||
|
throw new ServiceException("人员菜单鉴权失败!"); |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 遥控鉴权 |
||||||
|
* @param stationId 站点ID |
||||||
|
* @param userId 用户ID |
||||||
|
*/ |
||||||
|
public void remoteAuthentication(String stationId, String userId,String sessionId) { |
||||||
|
// 查询数据平台站点是否可被遥控
|
||||||
|
Result<List<ProjectVO>> projectR = projectClient.getProjectIds(Lists.newArrayList(stationId)); |
||||||
|
Assert.isTrue(projectR.isSuccess() && CollectionUtil.isNotEmpty(projectR.getData()) && projectR.getData().size() == 1,() -> { |
||||||
|
throw new ServiceException("未查询到站点,鉴权失败!"); |
||||||
|
}); |
||||||
|
ProjectVO project = projectR.getData().get(0); |
||||||
|
if(ProjectRemoteTypeEnum.NOT_ALLOW.getCtrlType().equals(project.getCtrlType())) { |
||||||
|
// 不允许发送遥控
|
||||||
|
throw new ServiceException("该站点不允许发送遥控指令,校验失败!"); |
||||||
|
} |
||||||
|
else if(ProjectRemoteTypeEnum.VALID.getCtrlType().equals(project.getCtrlType())) { |
||||||
|
// 运行发送遥控并且需要校验权限
|
||||||
|
R<List<CtrlAuth>> ctrlAuthR = remoteClient.getCtrlAuth(Optional.ofNullable(userId).filter(StringUtil::isNotBlank).map(Long::parseLong).orElse(null)); |
||||||
|
Assert.isTrue(ctrlAuthR.isSuccess(),() -> { |
||||||
|
throw new ServiceException("该站点未设置鉴权用户,校验失败!"); |
||||||
|
}); |
||||||
|
List<CtrlAuth> ctrlAuthList = ctrlAuthR.getData(); |
||||||
|
Optional<CtrlAuth> authOptional = ctrlAuthList.stream().filter(c -> c.getProjectId().equals(stationId)).findFirst(); |
||||||
|
Assert.isTrue(authOptional.isPresent() && Func.isNotEmpty(authOptional.get().getIsLimitMachine()), () -> { |
||||||
|
throw new ServiceException("该用户不存在相应站点权限,校验不通过!"); |
||||||
|
}); |
||||||
|
CtrlAuth ctrlAuth = authOptional.get(); |
||||||
|
// 如限制机器发送遥控指令
|
||||||
|
if(ctrlAuth.getIsLimitMachine().intValue() == 1) { |
||||||
|
SessionContentVO sessionContent = (SessionContentVO) redisTemplate.opsForHash().get(RedisKeyConstants.SESSION_CONTENT_KEY, sessionId); |
||||||
|
Assert.isTrue(Func.isNotEmpty(sessionContent),() -> { |
||||||
|
throw new ServiceException("获取问题机器码失败,校验不通过!"); |
||||||
|
}); |
||||||
|
String machineCode = sessionContent.getMachineCode(); |
||||||
|
Assert.isTrue(StringUtil.isNotBlank(machineCode) && Func.isNotEmpty(machineCode) ,() -> { |
||||||
|
throw new ServiceException("获取问题机器码失败,校验不通过!"); |
||||||
|
}); |
||||||
|
Assert.isTrue(machineCode.equals(ctrlAuth.getMachineCode()),() -> { |
||||||
|
throw new ServiceException("站点校验码校验失败,校验不通过!"); |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public List<DeptStationDTO> getStationPermissionsById(String userId) { |
||||||
|
R<List<DeptStationDTO>> deptSattionR = deptClient.getStationPermissionsById(Long.valueOf(userId)); |
||||||
|
Assert.isTrue(deptSattionR.isSuccess() && CollectionUtil.isNotEmpty(deptSattionR.getData()),() -> { |
||||||
|
throw new ServiceException("获取人员站点权限失败!"); |
||||||
|
}); |
||||||
|
return deptSattionR.getData(); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,39 @@ |
|||||||
|
package com.hnac.hzims.bigmodel.interactive.vo; |
||||||
|
|
||||||
|
import com.alibaba.fastjson.annotation.JSONField; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: huangxing |
||||||
|
* @Date: 2024/05/22 10:20 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class DataItemVO implements Serializable { |
||||||
|
|
||||||
|
private String name; |
||||||
|
|
||||||
|
@JSONField(name = "id") |
||||||
|
private String attrId; |
||||||
|
|
||||||
|
@JSONField(name = "param_name") |
||||||
|
private String attrName; |
||||||
|
|
||||||
|
@JSONField(name = "device_name") |
||||||
|
private String deviceName; |
||||||
|
|
||||||
|
@JSONField(name = "device_id") |
||||||
|
private String deviceId; |
||||||
|
|
||||||
|
@JSONField(name = "station_id") |
||||||
|
private String projectId; |
||||||
|
|
||||||
|
@JSONField(name = "station_name") |
||||||
|
private String projectName; |
||||||
|
|
||||||
|
private String signage; |
||||||
|
|
||||||
|
private String units; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,33 @@ |
|||||||
|
package com.hnac.hzims.bigmodel.interactive.vo; |
||||||
|
|
||||||
|
import com.alibaba.fastjson.annotation.JSONField; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: huangxing |
||||||
|
* @Date: 2024/05/22 10:28 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class DataVO implements Serializable { |
||||||
|
|
||||||
|
/**数据查询类型:实时、历史**/ |
||||||
|
private String type; |
||||||
|
|
||||||
|
@JSONField(name = "time_begin") |
||||||
|
private String startTime; |
||||||
|
|
||||||
|
@JSONField(name = "time_end") |
||||||
|
private String endTime; |
||||||
|
|
||||||
|
/**包括:"其它"、"最大值"、"最小值"、"总和值"、"平均值"**/ |
||||||
|
private String method; |
||||||
|
|
||||||
|
/**实时数据结果集**/ |
||||||
|
private Map<String,Object> real; |
||||||
|
|
||||||
|
private DataItemVO item; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,39 @@ |
|||||||
|
package com.hnac.hzims.bigmodel.interactive.vo; |
||||||
|
|
||||||
|
import com.alibaba.fastjson.annotation.JSONField; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: huangxing |
||||||
|
* @Date: 2024/05/20 14:46 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode |
||||||
|
public class RemoteParamVO implements Serializable { |
||||||
|
|
||||||
|
@JSONField(name = "id") |
||||||
|
private String funcId; |
||||||
|
|
||||||
|
@JSONField(name = "yk_name") |
||||||
|
private String remoteName; |
||||||
|
|
||||||
|
@JSONField(name = "device_id") |
||||||
|
private String deviceId; |
||||||
|
|
||||||
|
@JSONField(name = "device_name") |
||||||
|
private String deviceName; |
||||||
|
|
||||||
|
@JSONField(name = "station_id") |
||||||
|
private String projectId; |
||||||
|
|
||||||
|
@JSONField(name = "station_name") |
||||||
|
private String projectName; |
||||||
|
|
||||||
|
private String signage; |
||||||
|
|
||||||
|
private String value; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
package com.hnac.hzims.bigmodel.interactive.vo; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: huangxing |
||||||
|
* @Date: 2024/05/20 19:31 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode |
||||||
|
public class SessionContentVO implements Serializable { |
||||||
|
|
||||||
|
/**机器码**/ |
||||||
|
private String machineCode; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
package com.hnac.hzims.bigmodel.websocket.constants; |
||||||
|
|
||||||
|
import com.hnac.hzims.common.constant.CommonConstant; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: huangxing |
||||||
|
* @Date: 2024/05/20 19:11 |
||||||
|
*/ |
||||||
|
public interface RedisKeyConstants { |
||||||
|
|
||||||
|
String SESSION_CONTENT_KEY = CommonConstant.TENANT_ID + ":hzims:bigModel:session:content"; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,129 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||||
|
<parent> |
||||||
|
<groupId>com.hnac.hzims</groupId> |
||||||
|
<artifactId>hzims-service</artifactId> |
||||||
|
<version>4.0.0-SNAPSHOT</version> |
||||||
|
</parent> |
||||||
|
|
||||||
|
<modelVersion>4.0.0</modelVersion> |
||||||
|
<artifactId>hzims-simulate</artifactId> |
||||||
|
<packaging>jar</packaging> |
||||||
|
|
||||||
|
<properties> |
||||||
|
<maven.compiler.source>8</maven.compiler.source> |
||||||
|
<maven.compiler.target>8</maven.compiler.target> |
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
||||||
|
</properties> |
||||||
|
|
||||||
|
|
||||||
|
<dependencies> |
||||||
|
<dependency> |
||||||
|
<groupId>com.xuxueli</groupId> |
||||||
|
<artifactId>xxl-job-core</artifactId> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>com.google.guava</groupId> |
||||||
|
<artifactId>failureaccess</artifactId> |
||||||
|
<version>1.0.1</version> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>org.springblade</groupId> |
||||||
|
<artifactId>blade-common</artifactId> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>org.springblade</groupId> |
||||||
|
<artifactId>blade-core-boot</artifactId> |
||||||
|
<exclusions> |
||||||
|
<exclusion> |
||||||
|
<groupId>org.springblade</groupId> |
||||||
|
<artifactId>blade-core-cloud</artifactId> |
||||||
|
</exclusion> |
||||||
|
</exclusions> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>org.springblade</groupId> |
||||||
|
<artifactId>blade-starter-http</artifactId> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>org.springblade</groupId> |
||||||
|
<artifactId>blade-core-cloud</artifactId> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
|
||||||
|
<dependency> |
||||||
|
<groupId>org.springblade</groupId> |
||||||
|
<artifactId>blade-starter-datascope</artifactId> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>org.projectlombok</groupId> |
||||||
|
<artifactId>lombok</artifactId> |
||||||
|
</dependency> |
||||||
|
|
||||||
|
<dependency> |
||||||
|
<groupId>com.hnac.hzims</groupId> |
||||||
|
<artifactId>equipment-api</artifactId> |
||||||
|
<version>4.0.0-SNAPSHOT</version> |
||||||
|
</dependency> |
||||||
|
|
||||||
|
<dependency> |
||||||
|
<groupId>com.hnac.hzims</groupId> |
||||||
|
<artifactId>weather-api</artifactId> |
||||||
|
<version>4.0.0-SNAPSHOT</version> |
||||||
|
</dependency> |
||||||
|
|
||||||
|
<dependency> |
||||||
|
<groupId>com.hzinfo.framework</groupId> |
||||||
|
<artifactId>hnac-framework-mqtt-starters</artifactId> |
||||||
|
</dependency> |
||||||
|
|
||||||
|
<dependency> |
||||||
|
<groupId>dom4j</groupId> |
||||||
|
<artifactId>dom4j</artifactId> |
||||||
|
<version>1.6.1</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>org.springblade</groupId> |
||||||
|
<artifactId>blade-core-cloud</artifactId> |
||||||
|
<version>5.1.1.RELEASE.fix.1</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
|
||||||
|
</dependencies> |
||||||
|
|
||||||
|
|
||||||
|
<build> |
||||||
|
<finalName>${project.name}-${project.version}</finalName> |
||||||
|
<resources> |
||||||
|
<resource> |
||||||
|
<directory>src/main/java</directory> |
||||||
|
<includes> |
||||||
|
<include>**/*.xml</include> |
||||||
|
</includes> |
||||||
|
<filtering>false</filtering> |
||||||
|
</resource> |
||||||
|
</resources> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<groupId>org.springframework.boot</groupId> |
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId> |
||||||
|
<version>2.6.6</version> |
||||||
|
<executions> |
||||||
|
<execution> |
||||||
|
<goals> |
||||||
|
<goal>repackage</goal> |
||||||
|
</goals> |
||||||
|
<configuration> |
||||||
|
<classifier>exec</classifier> |
||||||
|
</configuration> |
||||||
|
</execution> |
||||||
|
</executions> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
</build> |
||||||
|
|
||||||
|
</project> |
@ -0,0 +1,28 @@ |
|||||||
|
package com.hnac.hzims.simulate; |
||||||
|
|
||||||
|
import org.mybatis.spring.annotation.MapperScan; |
||||||
|
import org.springblade.core.cloud.feign.EnableBladeFeign; |
||||||
|
import org.springblade.core.launch.BladeApplication; |
||||||
|
import org.springframework.boot.builder.SpringApplicationBuilder; |
||||||
|
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; |
||||||
|
import org.springframework.cloud.client.SpringCloudApplication; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* @author admin |
||||||
|
*/ |
||||||
|
@EnableBladeFeign |
||||||
|
@SpringCloudApplication |
||||||
|
@MapperScan(basePackages={"com.hnac.hzims.**.mapper"}) |
||||||
|
//@ComponentScan(basePackages = {"com.hnac.hzinfo.simulate"})
|
||||||
|
public class SimulateApplication extends SpringBootServletInitializer { |
||||||
|
static String APPLICATION_NAME="hzims-simulate"; |
||||||
|
public static void main(String[] args) { |
||||||
|
BladeApplication.run(APPLICATION_NAME, SimulateApplication.class, args); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { |
||||||
|
return BladeApplication.createSpringApplicationBuilder(builder, APPLICATION_NAME, SimulateApplication.class); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,43 @@ |
|||||||
|
package com.hnac.hzims.simulate.constants; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
* @describe 实时数据写入常量 |
||||||
|
*/ |
||||||
|
public interface WriteRealDataConstant { |
||||||
|
|
||||||
|
String REAL_DATA_V3 = "3"; |
||||||
|
|
||||||
|
String REAL_DATA_V4 = "4"; |
||||||
|
|
||||||
|
String GATE_FLOW = "过闸流量(m³/s)"; |
||||||
|
|
||||||
|
String OPENING_DEGREE = "开度(m)"; |
||||||
|
|
||||||
|
String GATE_STATUS = "闸门状态"; |
||||||
|
|
||||||
|
String WRITE_REAL_GATE_DATA = "writeRealGateData"; |
||||||
|
|
||||||
|
String WRITE_REAL_RAIN_DATA = "writeRealRainData"; |
||||||
|
|
||||||
|
Long OPEN = 0L; |
||||||
|
|
||||||
|
Long CLOSE = 1L; |
||||||
|
|
||||||
|
String WRITE_GATE = "1"; |
||||||
|
|
||||||
|
String WRITE_RAIN = "2"; |
||||||
|
|
||||||
|
// 降雨站属性标识
|
||||||
|
String ATTR_RAIN = "attr_rain"; |
||||||
|
String ATTR_WIND360 = "wind360"; |
||||||
|
String ATTR_WIND_SCALE = "wind_scale"; |
||||||
|
String ATTR_WIND_SPEED = "wind_speed "; |
||||||
|
String ATTR_HUMIDITY = "humidity"; |
||||||
|
String ATTR_PRESSURE = "pressure"; |
||||||
|
String ATTR_VIS = "vis"; |
||||||
|
String ATTR_CLOUD = "cloud"; |
||||||
|
String ATTR_DEW = "dew"; |
||||||
|
String ATTR_FEELS_LIKE = "feels_like"; |
||||||
|
String ATTR_TEMP = "temp"; |
||||||
|
} |
@ -0,0 +1,31 @@ |
|||||||
|
package com.hnac.hzims.simulate.controller; |
||||||
|
|
||||||
|
import com.hnac.hzims.simulate.service.WriteRealDataService; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
@RequestMapping("/gate") |
||||||
|
@Api(value = "闸门开关机模拟服务", tags = "闸门开关机模拟服务") |
||||||
|
public class GageController { |
||||||
|
|
||||||
|
private final WriteRealDataService writeRealDataService; |
||||||
|
|
||||||
|
@GetMapping("/isOpen") |
||||||
|
@ApiOperation(value = "枢纽天气情况") |
||||||
|
public R<Boolean> weather(@RequestParam("deviceCode") String deviceCode, |
||||||
|
@RequestParam("isOpen") Long isOpen){ |
||||||
|
return R.data(writeRealDataService.isOpen(deviceCode,isOpen)); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,195 @@ |
|||||||
|
package com.hnac.hzims.simulate.controller; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.google.common.collect.Maps; |
||||||
|
import com.hnac.hzims.common.enums.ExceptionEnum; |
||||||
|
import com.hnac.hzims.simulate.entity.DataModel; |
||||||
|
import com.hnac.hzims.simulate.entity.Device; |
||||||
|
import com.hnac.hzims.simulate.entity.DeviceField; |
||||||
|
import com.hnac.hzims.simulate.entity.DeviceFieldGap; |
||||||
|
import com.hnac.hzims.simulate.service.DeviceFieldGapService; |
||||||
|
import com.hnac.hzims.simulate.service.DeviceFieldService; |
||||||
|
import com.hnac.hzims.simulate.service.SimulationService; |
||||||
|
import com.hnac.hzims.simulate.util.ParseFacUtils; |
||||||
|
import com.hnac.hzims.simulate.util.TopicConstant; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springblade.core.log.exception.ServiceException; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.jackson.JsonUtil; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springblade.mqtt.producer.IMqttSender; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.beans.factory.annotation.Value; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
import java.io.File; |
||||||
|
import java.io.FileInputStream; |
||||||
|
import java.io.IOException; |
||||||
|
import java.io.InputStream; |
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
import java.util.stream.Collectors; |
||||||
|
|
||||||
|
@RestController |
||||||
|
@RequestMapping("/simulationData") |
||||||
|
@Api(value = "数据模拟服务", tags = "数据模拟服务") |
||||||
|
@Slf4j |
||||||
|
public class SimulationDataController { |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private SimulationService simulationService; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private DeviceFieldService deviceFieldService; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private DeviceFieldGapService deviceFieldGapService; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private IMqttSender mqttSender; |
||||||
|
|
||||||
|
@Value("fac.path") |
||||||
|
private String facPath; |
||||||
|
|
||||||
|
public static Map<String, String> cacheMap = Maps.newHashMap(); |
||||||
|
|
||||||
|
@ApiOperation(value = "解析v3.0场信息文件", notes = "解析场信息文件") |
||||||
|
@GetMapping("/readFac") |
||||||
|
public R<Void> readFac() { |
||||||
|
InputStream inputStream = null; |
||||||
|
try { |
||||||
|
inputStream = new FileInputStream(new File(facPath+File.separator+"factory.fac")); |
||||||
|
List<DataModel> list = ParseFacUtils.parsePoint(inputStream); |
||||||
|
list.forEach(entity -> { |
||||||
|
mqttSender.sendToMqtt(TopicConstant.TOPIC_DEVICE_MODEL, JsonUtil.toJson(entity)); |
||||||
|
}); |
||||||
|
return R.success("解析场信息文件成功"); |
||||||
|
} catch (Exception e) { |
||||||
|
log.error(e.getMessage(), e); |
||||||
|
return R.fail("解析场信息文件失败"); |
||||||
|
} finally { |
||||||
|
if (inputStream != null) { |
||||||
|
try { |
||||||
|
inputStream.close(); |
||||||
|
} catch (IOException e) { |
||||||
|
e.printStackTrace(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@ApiOperation(value = "分页范围配置", notes = "分页范围配置") |
||||||
|
@GetMapping("/pageGap") |
||||||
|
public R<IPage<DeviceFieldGap>> pageGap(String stationId, Query query) { |
||||||
|
List<Device> list=simulationService.getDeviceListByStationId(stationId); |
||||||
|
List<String> ids=list.stream().map(Device::getId).collect(Collectors.toList()); |
||||||
|
LambdaQueryWrapper<DeviceFieldGap> lambdaQueryWrapper=new LambdaQueryWrapper(); |
||||||
|
lambdaQueryWrapper.in(DeviceFieldGap::getFacDeviceId,ids); |
||||||
|
IPage<DeviceFieldGap> pageList=deviceFieldGapService.page(Condition.getPage(query),lambdaQueryWrapper); |
||||||
|
return R.data(pageList); |
||||||
|
} |
||||||
|
|
||||||
|
@ApiOperation(value = "更新设备属性范围配置", notes = "更新设备属性范围配置") |
||||||
|
@PostMapping("/updateGap") |
||||||
|
public R updateGap(@RequestBody DeviceFieldGap deviceFieldGap) { |
||||||
|
deviceFieldGapService.updateById(deviceFieldGap); |
||||||
|
return R.status(true); |
||||||
|
} |
||||||
|
|
||||||
|
@ApiOperation(value = "第一次同步设备属性", notes = "第一次同步设备属性") |
||||||
|
@GetMapping("/syncOneGap") |
||||||
|
public R syncGap() { |
||||||
|
//存在表
|
||||||
|
int count=deviceFieldService.existGapTable(); |
||||||
|
if(count<=0){//建表
|
||||||
|
deviceFieldService.createGapTable(); |
||||||
|
} |
||||||
|
//同步
|
||||||
|
List<DeviceField> list=deviceFieldService.list(); |
||||||
|
List<DeviceFieldGap> gaps=list.stream().map(result -> new DeviceFieldGap(result.getId(), result.getFacDeviceId(), |
||||||
|
result.getSignage(),result.getName(), BigDecimal.ZERO,BigDecimal.ZERO)) |
||||||
|
.collect(Collectors.toList()); |
||||||
|
deviceFieldGapService.saveOrUpdateBatch(gaps); |
||||||
|
|
||||||
|
return R.status(true); |
||||||
|
} |
||||||
|
|
||||||
|
@ApiOperation(value = "第二次同步设备属性", notes = "第二次同步设备属性") |
||||||
|
@GetMapping("/syncTwoGap") |
||||||
|
public R syncTwoGap() { |
||||||
|
//同步
|
||||||
|
List<DeviceField> list=deviceFieldService.queryNewInsert(); |
||||||
|
if(list!=null && !list.isEmpty()) { |
||||||
|
List<DeviceFieldGap> gaps = list.stream().map(result -> new DeviceFieldGap(result.getId(), result.getFacDeviceId(), |
||||||
|
result.getSignage(), result.getName(), BigDecimal.ZERO, BigDecimal.ZERO)) |
||||||
|
.collect(Collectors.toList()); |
||||||
|
deviceFieldGapService.saveBatch(gaps); |
||||||
|
} |
||||||
|
return R.status(true); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@ApiOperation(value = "模拟单站的数据(循环,每隔sleepTime时长发送一次整站数据)", notes = "模拟单站的数据") |
||||||
|
@GetMapping("/simulationMultiple") |
||||||
|
public R<Void> simulationMultipleV3(String stationId, Long sleepTime) { |
||||||
|
String key = "simulation:" + stationId; |
||||||
|
String hasExc = cacheMap.get(key); |
||||||
|
if (Func.isNotBlank(hasExc)) { |
||||||
|
return R.fail("该站已经在模拟数据了"); |
||||||
|
} |
||||||
|
try { |
||||||
|
simulationService.simulationMultiple(stationId, sleepTime); |
||||||
|
}catch (Exception e) { |
||||||
|
throw new ServiceException(ExceptionEnum.SIMULATE_ERROR); |
||||||
|
} |
||||||
|
cacheMap.put(key, "true"); |
||||||
|
return R.status(true); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@ApiOperation(value = "模拟单站的数据(循环,每隔sleepTime时长发送一次整站数据)", notes = "模拟单站的数据") |
||||||
|
@GetMapping("/simulationMultipleV4") |
||||||
|
public R<Void> simulationMultipleV4(String stationId, Long sleepTime) { |
||||||
|
String key = "simulation:" + stationId; |
||||||
|
String hasExc = cacheMap.get(key); |
||||||
|
if (Func.isNotBlank(hasExc)) { |
||||||
|
return R.fail("该站已经在模拟数据了"); |
||||||
|
} |
||||||
|
try { |
||||||
|
simulationService.simulationMultipleV4(stationId, sleepTime); |
||||||
|
}catch (Exception e) { |
||||||
|
throw new ServiceException(ExceptionEnum.SIMULATE_ERROR); |
||||||
|
} |
||||||
|
cacheMap.put(key, "true"); |
||||||
|
return R.status(true); |
||||||
|
} |
||||||
|
|
||||||
|
// @ApiOperation(value = "模拟单站的数据(循环,每隔sleepTime时长发送一次整站数据)", notes = "模拟单站的数据")
|
||||||
|
// @GetMapping("/simulationMultipleFlow")
|
||||||
|
// public R<Void> simulationMultipleInFlow() {
|
||||||
|
// String key = "simulationMultipleInFlow";
|
||||||
|
// String hasExc = cacheMap.get(key);
|
||||||
|
// if (Func.isNotBlank(hasExc)) {
|
||||||
|
// return R.fail("该站已经在模拟数据了");
|
||||||
|
// }
|
||||||
|
// simulationService.simulationMultipleInFlow();
|
||||||
|
// cacheMap.put(key, "true");
|
||||||
|
// return R.status(true);
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
@ApiOperation(value = "停止模拟", notes = "停止模拟") |
||||||
|
@GetMapping("/stopStart") |
||||||
|
public R<Void> stopStart() { |
||||||
|
simulationService.stopStart(); |
||||||
|
return R.status(true); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,20 @@ |
|||||||
|
package com.hnac.hzims.simulate.entity; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.Builder; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.NoArgsConstructor; |
||||||
|
|
||||||
|
@Data |
||||||
|
@AllArgsConstructor |
||||||
|
@NoArgsConstructor |
||||||
|
@Builder |
||||||
|
public class DataItem { |
||||||
|
|
||||||
|
private String id; |
||||||
|
private String signage;//hz3000定义的id
|
||||||
|
private String name; |
||||||
|
private String type; |
||||||
|
private String soeType; |
||||||
|
private String eventType; |
||||||
|
} |
@ -0,0 +1,46 @@ |
|||||||
|
package com.hnac.hzims.simulate.entity; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* { |
||||||
|
* "station": "4543", |
||||||
|
* "structType": "dataGroup", |
||||||
|
* "id": "5016387599_0", |
||||||
|
* "pid": "5016387585", |
||||||
|
* "name": "温度传感器", |
||||||
|
* "children": [{ |
||||||
|
* "id": "5016387607", |
||||||
|
* "name": "温度", |
||||||
|
* "type": "YC" |
||||||
|
* },{ |
||||||
|
* "id": "5016387617", |
||||||
|
* "name": "高度", |
||||||
|
* "type": "YC" |
||||||
|
* },{ |
||||||
|
* "id": "5016387608", |
||||||
|
* "name": "工作状态", |
||||||
|
* "type": "YX" |
||||||
|
* },{ |
||||||
|
* "id": "5016387609", |
||||||
|
* "name": "工作状态", |
||||||
|
* "type": "SOE", |
||||||
|
* "eventType": "" |
||||||
|
* }] |
||||||
|
* } |
||||||
|
* 数据组 |
||||||
|
* @author ninglong |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class DataModel { |
||||||
|
private String station; |
||||||
|
private String structType; |
||||||
|
private String id; |
||||||
|
private String signage;//hz3000定义的id
|
||||||
|
private String pid; |
||||||
|
private String name; |
||||||
|
private List<DataItem> children; |
||||||
|
} |
||||||
|
|
@ -0,0 +1,66 @@ |
|||||||
|
package com.hnac.hzims.simulate.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
||||||
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.Builder; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.NoArgsConstructor; |
||||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* 数据组 |
||||||
|
* |
||||||
|
* @author ninglong |
||||||
|
*/ |
||||||
|
@TableName(value = "hzinfo_fac_device") |
||||||
|
@Data |
||||||
|
@AllArgsConstructor |
||||||
|
@NoArgsConstructor |
||||||
|
@Builder |
||||||
|
public class Device implements Serializable { |
||||||
|
|
||||||
|
@ApiModelProperty(value = "id") |
||||||
|
@TableId(type = IdType.INPUT) |
||||||
|
private String id; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "名称") |
||||||
|
private String name; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "0-云端cms,1-站端直传") |
||||||
|
private Integer source; |
||||||
|
|
||||||
|
@ApiModelProperty("hz3000定义的id,如果定义的是大id则值与id字段值相同") |
||||||
|
private String sid; |
||||||
|
|
||||||
|
@ApiModelProperty("version=v3,version=v4") |
||||||
|
private String modelKind; |
||||||
|
|
||||||
|
@DateTimeFormat( |
||||||
|
pattern = "yyyy-MM-dd HH:mm:ss" |
||||||
|
) |
||||||
|
@JsonFormat( |
||||||
|
pattern = "yyyy-MM-dd HH:mm:ss" |
||||||
|
) |
||||||
|
@ApiModelProperty("创建时间") |
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
@JsonSerialize( |
||||||
|
using = ToStringSerializer.class |
||||||
|
) |
||||||
|
|
||||||
|
@ApiModelProperty("项目id") |
||||||
|
private String projectId; |
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty("写入方式") |
||||||
|
private String isWrite; |
||||||
|
} |
@ -0,0 +1,22 @@ |
|||||||
|
package com.hnac.hzims.simulate.entity; |
||||||
|
|
||||||
|
import com.google.common.collect.Lists; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.Builder; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.NoArgsConstructor; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 设备数据 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@AllArgsConstructor |
||||||
|
@NoArgsConstructor |
||||||
|
@Builder |
||||||
|
public class DeviceData { |
||||||
|
private String station; |
||||||
|
private String time; |
||||||
|
private List<Kvtq> children = Lists.newArrayList(); |
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
package com.hnac.hzims.simulate.entity; |
||||||
|
|
||||||
|
import com.google.common.collect.Lists; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.Builder; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.NoArgsConstructor; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Data |
||||||
|
@AllArgsConstructor |
||||||
|
@NoArgsConstructor |
||||||
|
@Builder |
||||||
|
public class DeviceDataV4 { |
||||||
|
private String stationId; |
||||||
|
private String time; |
||||||
|
private List<KvtqV4> children = Lists.newArrayList(); |
||||||
|
} |
@ -0,0 +1,38 @@ |
|||||||
|
package com.hnac.hzims.simulate.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
@TableName("hzinfo_fac_device_config") |
||||||
|
@Data |
||||||
|
public class DeviceFacConfig implements Serializable { |
||||||
|
@ApiModelProperty("id") |
||||||
|
@TableId(type = IdType.INPUT) |
||||||
|
private String id; |
||||||
|
|
||||||
|
@ApiModelProperty("设备id") |
||||||
|
private String deviceCode; |
||||||
|
|
||||||
|
@ApiModelProperty("字段标识") |
||||||
|
private String facDeviceId; |
||||||
|
|
||||||
|
@ApiModelProperty("站点Id") |
||||||
|
private String stationId; |
||||||
|
|
||||||
|
@ApiModelProperty("站点类型") |
||||||
|
private String modelKind; |
||||||
|
|
||||||
|
@ApiModelProperty("sid") |
||||||
|
private String sid; |
||||||
|
|
||||||
|
@ApiModelProperty("数据写入方式: 1-闸门,2-天气") |
||||||
|
private String writeMethod; |
||||||
|
} |
@ -0,0 +1,42 @@ |
|||||||
|
package com.hnac.hzims.simulate.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
@TableName("hzinfo_fac_device_attr") |
||||||
|
@Data |
||||||
|
public class DeviceField implements Serializable { |
||||||
|
@ApiModelProperty("id") |
||||||
|
@TableId(type = IdType.INPUT) |
||||||
|
private String id; |
||||||
|
@ApiModelProperty("设备id") |
||||||
|
private String facDeviceId; |
||||||
|
@ApiModelProperty("字段标识") |
||||||
|
private String signage; |
||||||
|
@ApiModelProperty("字段名称") |
||||||
|
private String name; |
||||||
|
@ApiModelProperty("最大值") |
||||||
|
private String projectId; |
||||||
|
|
||||||
|
@DateTimeFormat( |
||||||
|
pattern = "yyyy-MM-dd HH:mm:ss" |
||||||
|
) |
||||||
|
@JsonFormat( |
||||||
|
pattern = "yyyy-MM-dd HH:mm:ss" |
||||||
|
) |
||||||
|
@ApiModelProperty("创建时间") |
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
private Long modelClassifyId; |
||||||
|
private String alarmType; |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,30 @@ |
|||||||
|
package com.hnac.hzims.simulate.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.math.BigDecimal; |
||||||
|
|
||||||
|
@TableName("hzinfo_fac_device_attr_gap") |
||||||
|
@Data |
||||||
|
@AllArgsConstructor |
||||||
|
public class DeviceFieldGap implements Serializable { |
||||||
|
@ApiModelProperty("id") |
||||||
|
@TableId(type = IdType.INPUT) |
||||||
|
private String id; |
||||||
|
@ApiModelProperty("设备id") |
||||||
|
private String facDeviceId; |
||||||
|
@ApiModelProperty("字段标识") |
||||||
|
private String signage; |
||||||
|
@ApiModelProperty("字段名称") |
||||||
|
private String name; |
||||||
|
@ApiModelProperty("最大值") |
||||||
|
private BigDecimal maxVal; |
||||||
|
@ApiModelProperty("最小值") |
||||||
|
private BigDecimal minVal; |
||||||
|
} |
@ -0,0 +1,33 @@ |
|||||||
|
package com.hnac.hzims.simulate.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
@TableName("hzinfo_fac_device_rain_gap") |
||||||
|
@Data |
||||||
|
public class DeviceRainGap implements Serializable { |
||||||
|
|
||||||
|
@ApiModelProperty("id") |
||||||
|
@TableId(type = IdType.INPUT) |
||||||
|
private String id; |
||||||
|
|
||||||
|
@ApiModelProperty("设备id") |
||||||
|
private String facDeviceId; |
||||||
|
|
||||||
|
@ApiModelProperty("属性标识名称") |
||||||
|
private String name; |
||||||
|
|
||||||
|
@ApiModelProperty("属性标识") |
||||||
|
private String attribute; |
||||||
|
|
||||||
|
@ApiModelProperty("字段标识") |
||||||
|
private String signage; |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
package com.hnac.hzims.simulate.entity; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.Builder; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.NoArgsConstructor; |
||||||
|
|
||||||
|
@Data |
||||||
|
@AllArgsConstructor |
||||||
|
@NoArgsConstructor |
||||||
|
@Builder |
||||||
|
public class Kvtq { |
||||||
|
|
||||||
|
private String k; |
||||||
|
private String v; |
||||||
|
private String t; |
||||||
|
private Integer q; |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
package com.hnac.hzims.simulate.entity; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.Builder; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.NoArgsConstructor; |
||||||
|
|
||||||
|
@Data |
||||||
|
@AllArgsConstructor |
||||||
|
@NoArgsConstructor |
||||||
|
@Builder |
||||||
|
public class KvtqV4 { |
||||||
|
private String sid; |
||||||
|
private String k; |
||||||
|
private String v; |
||||||
|
private String t; |
||||||
|
private Integer q; |
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
package com.hnac.hzims.simulate.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.hnac.hzims.simulate.entity.DeviceFacConfig; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import org.apache.ibatis.annotations.Param; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface DeviceFacConfigMapper extends BaseMapper<DeviceFacConfig> { |
||||||
|
|
||||||
|
List<DeviceFacConfig> queryConfigDevice(@Param("method") String method); |
||||||
|
|
||||||
|
DeviceFacConfig configByDeviceCode(@Param("deviceCode") String deviceCode); |
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
<?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.hnac.hzims.simulate.mapper.DeviceFacConfigMapper"> |
||||||
|
|
||||||
|
<select id="queryConfigDevice" resultType="com.hnac.hzims.simulate.entity.DeviceFacConfig"> |
||||||
|
SELECT * FROM HZINFO_FAC_DEVICE_CONFIG |
||||||
|
WHERE WRITE_METHOD = #{method} |
||||||
|
</select> |
||||||
|
<select id="configByDeviceCode" resultType="com.hnac.hzims.simulate.entity.DeviceFacConfig"> |
||||||
|
SELECT * FROM HZINFO_FAC_DEVICE_CONFIG |
||||||
|
WHERE DEVICE_CODE = #{deviceCode} |
||||||
|
</select> |
||||||
|
</mapper> |
@ -0,0 +1,16 @@ |
|||||||
|
package com.hnac.hzims.simulate.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.hnac.hzims.simulate.entity.DeviceFieldGap; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import org.apache.ibatis.annotations.Param; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Mapper |
||||||
|
public interface DeviceFieldGapMapper extends BaseMapper<DeviceFieldGap> { |
||||||
|
List<DeviceFieldGap> queryDeviceLimits(@Param("signages") List<String> signages); |
||||||
|
|
||||||
|
void updateLimitById(@Param("maxValue") BigDecimal maxValue, @Param("minValue") BigDecimal minValue,@Param("id") String id); |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
<?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.hnac.hzims.simulate.mapper.DeviceFieldGapMapper"> |
||||||
|
<select id="queryDeviceLimits" resultType="com.hnac.hzims.simulate.entity.DeviceFieldGap"> |
||||||
|
select * from HZINFO_FAC_DEVICE_ATTR_GAP |
||||||
|
where signage in |
||||||
|
<foreach collection="signages" item="item" open="(" close=")" separator="," > |
||||||
|
#{item} |
||||||
|
</foreach> |
||||||
|
</select> |
||||||
|
|
||||||
|
<update id="updateLimitById"> |
||||||
|
UPDATE HZINFO_FAC_DEVICE_ATTR_GAP |
||||||
|
SET max_val = #{maxValue}, |
||||||
|
min_val = #{minValue} |
||||||
|
WHERE id = #{id} |
||||||
|
</update> |
||||||
|
</mapper> |
@ -0,0 +1,19 @@ |
|||||||
|
package com.hnac.hzims.simulate.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.hnac.hzims.simulate.entity.DeviceField; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import org.apache.ibatis.annotations.Param; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Mapper |
||||||
|
public interface DeviceFieldMapper extends BaseMapper<DeviceField> { |
||||||
|
int existGapTable(); |
||||||
|
int createGapTable(); |
||||||
|
List<DeviceField> queryNewInsert(); |
||||||
|
|
||||||
|
List<DeviceField> queryDeviceFields(@Param("devices") List<String> devices); |
||||||
|
|
||||||
|
List<DeviceField> querySignages(@Param("facDeviceId") String facDeviceId); |
||||||
|
} |
@ -0,0 +1,34 @@ |
|||||||
|
<?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.hnac.hzims.simulate.mapper.DeviceFieldMapper"> |
||||||
|
<select id="existGapTable" resultType="int"> |
||||||
|
select count(*) from information_schema.TABLES where table_name = 'hzinfo_device_field_gap' |
||||||
|
</select> |
||||||
|
<update id="createGapTable"> |
||||||
|
CREATE TABLE hzinfo_device_field_gap ( |
||||||
|
id varchar(64) COLLATE utf8mb4_bin NOT NULL COMMENT '字段类型', |
||||||
|
fac_device_id varchar(50) COLLATE utf8mb4_bin NOT NULL COMMENT '设备实例id', |
||||||
|
signage varchar(25) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '字段标识', |
||||||
|
name varchar(100) COLLATE utf8mb4_bin NOT NULL COMMENT '字段名称', |
||||||
|
max_val decimal(9,3) DEFAULT NULL, |
||||||
|
min_val decimal(9,3) DEFAULT NULL, |
||||||
|
PRIMARY KEY (id) |
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='设备字段' |
||||||
|
|
||||||
|
</update> |
||||||
|
|
||||||
|
<select id="queryNewInsert" resultType="com.hnac.hzims.simulate.entity.DeviceField"> |
||||||
|
select * from hzinfo_fac_device_attr field where NOT EXISTS (select id from hzinfo_fac_device_attr_gap gap where field.id=gap.id) |
||||||
|
</select> |
||||||
|
<select id="queryDeviceFields" resultType="com.hnac.hzims.simulate.entity.DeviceField"> |
||||||
|
select * from hzinfo_fac_device_attr |
||||||
|
where fac_device_id in |
||||||
|
<foreach collection="devices" item="item" open="(" close=")" separator="," > |
||||||
|
#{item} |
||||||
|
</foreach> |
||||||
|
</select> |
||||||
|
<select id="querySignages" resultType="com.hnac.hzims.simulate.entity.DeviceField"> |
||||||
|
SELECT * FROM HZINFO_FAC_DEVICE_ATTR |
||||||
|
WHERE FAC_DEVICE_ID = #{facDeviceId} |
||||||
|
</select> |
||||||
|
</mapper> |
@ -0,0 +1,15 @@ |
|||||||
|
package com.hnac.hzims.simulate.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.hnac.hzims.simulate.entity.Device; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import org.apache.ibatis.annotations.Param; |
||||||
|
|
||||||
|
@Mapper |
||||||
|
public interface DeviceMapper extends BaseMapper<Device> { |
||||||
|
String getSid(@Param("stationId") String stationId); |
||||||
|
|
||||||
|
// List<String> selectStcd();
|
||||||
|
//
|
||||||
|
// int insertData(@Param("param") Map<String,Object> param);
|
||||||
|
} |
@ -0,0 +1,15 @@ |
|||||||
|
<?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.hnac.hzims.simulate.mapper.DeviceMapper"> |
||||||
|
<select id="getSid" resultType="java.lang.String"> |
||||||
|
select sid from hzinfo_fac_device where project_id=#{stationId} limit 1 |
||||||
|
</select> |
||||||
|
|
||||||
|
<!-- <select id="selectStcd" resultType="java.lang.String">--> |
||||||
|
<!-- select rscd from blade_ris.st_rsr_bsin where is_deleted=0--> |
||||||
|
<!-- </select>--> |
||||||
|
|
||||||
|
<!-- <insert id="insertData" keyProperty="id" useGeneratedKeys="true">--> |
||||||
|
<!-- insert into blade_ris.reservoir_data(STCD,DT,INFLOW) values (#{param.stcd},#{param.dt},#{param.inflow})--> |
||||||
|
<!-- </insert>--> |
||||||
|
</mapper> |
@ -0,0 +1,17 @@ |
|||||||
|
package com.hnac.hzims.simulate.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.hnac.hzims.simulate.entity.DeviceRainGap; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import org.apache.ibatis.annotations.Param; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface DeviceRainGapMapper extends BaseMapper<DeviceRainGap> { |
||||||
|
|
||||||
|
List<DeviceRainGap> RainGapByFacDeviceId(@Param("facDeviceId") String facDeviceId); |
||||||
|
} |
@ -0,0 +1,9 @@ |
|||||||
|
<?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.hnac.hzims.simulate.mapper.DeviceRainGapMapper"> |
||||||
|
|
||||||
|
<select id="RainGapByFacDeviceId" resultType="com.hnac.hzims.simulate.entity.DeviceRainGap"> |
||||||
|
SELECT * FROM HZINFO_FAC_DEVICE_RAIN_GAP |
||||||
|
WHERE FAC_DEVICE_ID = #{facDeviceId} |
||||||
|
</select> |
||||||
|
</mapper> |
@ -0,0 +1,53 @@ |
|||||||
|
package com.hnac.hzims.simulate.scheduled; |
||||||
|
|
||||||
|
import com.hnac.hzims.simulate.constants.WriteRealDataConstant; |
||||||
|
import com.hnac.hzims.simulate.service.WriteRealDataService; |
||||||
|
import com.xxl.job.core.biz.model.ReturnT; |
||||||
|
import com.xxl.job.core.handler.annotation.XxlJob; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springblade.core.tool.utils.DateUtil; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.scheduling.annotation.Scheduled; |
||||||
|
import org.springframework.stereotype.Component; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
* @describe 实时数据写入定时任务 |
||||||
|
*/ |
||||||
|
@Slf4j |
||||||
|
@Component |
||||||
|
public class WriteRealDataTask { |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private WriteRealDataService writeRealDataService; |
||||||
|
|
||||||
|
/** |
||||||
|
* 设备模型信息 |
||||||
|
*/ |
||||||
|
@XxlJob(WriteRealDataConstant.WRITE_REAL_GATE_DATA) |
||||||
|
//@Scheduled(cron = "0/40 * * * * ? ")
|
||||||
|
public ReturnT<String> writeRealGateData(String param) { |
||||||
|
if (Func.isBlank(param)) { |
||||||
|
param = DateUtil.format(new Date(), "yyyy-MM"); |
||||||
|
} |
||||||
|
writeRealDataService.writeRealGateData(param); |
||||||
|
return new ReturnT<>("SUCCESS"); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 设备模型信息 |
||||||
|
*/ |
||||||
|
@XxlJob(WriteRealDataConstant.WRITE_REAL_RAIN_DATA) |
||||||
|
//@Scheduled(cron = "0/40 * * * * ? ")
|
||||||
|
public ReturnT<String> writeRealRainData(String param) { |
||||||
|
if (Func.isBlank(param)) { |
||||||
|
param = DateUtil.format(new Date(), "yyyy-MM"); |
||||||
|
} |
||||||
|
writeRealDataService.writeRealRainData(param); |
||||||
|
return new ReturnT<>("SUCCESS"); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,11 @@ |
|||||||
|
package com.hnac.hzims.simulate.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
|
import com.hnac.hzims.simulate.entity.DeviceFieldGap; |
||||||
|
import com.hnac.hzims.simulate.mapper.DeviceFieldGapMapper; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
@Service |
||||||
|
public class DeviceFieldGapService extends ServiceImpl<DeviceFieldGapMapper, DeviceFieldGap> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,24 @@ |
|||||||
|
package com.hnac.hzims.simulate.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
|
import com.hnac.hzims.simulate.entity.DeviceField; |
||||||
|
import com.hnac.hzims.simulate.mapper.DeviceFieldMapper; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Service |
||||||
|
public class DeviceFieldService extends ServiceImpl<DeviceFieldMapper, DeviceField> { |
||||||
|
|
||||||
|
public int existGapTable(){ |
||||||
|
return this.baseMapper.existGapTable(); |
||||||
|
} |
||||||
|
|
||||||
|
public int createGapTable(){ |
||||||
|
return this.baseMapper.createGapTable(); |
||||||
|
} |
||||||
|
|
||||||
|
public List<DeviceField> queryNewInsert(){ |
||||||
|
return this.baseMapper.queryNewInsert(); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,21 @@ |
|||||||
|
package com.hnac.hzims.simulate.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
|
import com.hnac.hzims.simulate.entity.Device; |
||||||
|
import com.hnac.hzims.simulate.mapper.DeviceMapper; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
@Service |
||||||
|
public class DeviceService extends ServiceImpl<DeviceMapper, Device> { |
||||||
|
public String getSid(String stationId){ |
||||||
|
return this.baseMapper.getSid(stationId); |
||||||
|
} |
||||||
|
|
||||||
|
// public List<String> selectStcd(){
|
||||||
|
// return this.baseMapper.selectStcd();
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// public int insertData(Map<String,Object> param){
|
||||||
|
// return this.baseMapper.insertData(param);
|
||||||
|
// }
|
||||||
|
} |
@ -0,0 +1,280 @@ |
|||||||
|
package com.hnac.hzims.simulate.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
||||||
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||||
|
import com.google.common.collect.Lists; |
||||||
|
import com.google.common.collect.Maps; |
||||||
|
import com.hnac.hzims.simulate.entity.*; |
||||||
|
import com.hnac.hzims.simulate.util.DataConstants; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springblade.core.tool.jackson.JsonUtil; |
||||||
|
import org.springblade.core.tool.utils.DateTimeUtil; |
||||||
|
import org.springblade.core.tool.utils.ThreadUtil; |
||||||
|
import org.springblade.mqtt.producer.IMqttSender; |
||||||
|
import com.hnac.hzims.simulate.util.TopicConstant; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.scheduling.annotation.Async; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.text.SimpleDateFormat; |
||||||
|
import java.time.LocalDateTime; |
||||||
|
import java.util.*; |
||||||
|
import java.util.stream.Collectors; |
||||||
|
|
||||||
|
@Service |
||||||
|
@Slf4j |
||||||
|
public class SimulationService { |
||||||
|
@Autowired |
||||||
|
IMqttSender mqttSender; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
DeviceService deviceService; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
DeviceFieldService deviceFieldService; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
DeviceFieldGapService deviceFieldGapService; |
||||||
|
|
||||||
|
public List<Device> getDeviceListByStationId(String projectId){ |
||||||
|
LambdaQueryWrapper<Device> lambdaQueryWrapper=new LambdaQueryWrapper(); |
||||||
|
lambdaQueryWrapper.eq(Device::getProjectId,projectId); |
||||||
|
lambdaQueryWrapper.eq(Device::getIsWrite,"0"); |
||||||
|
List<Device> list = deviceService.list(lambdaQueryWrapper); |
||||||
|
return list; |
||||||
|
} |
||||||
|
|
||||||
|
String getSid(String stationId){ |
||||||
|
return deviceService.getSid(stationId); |
||||||
|
} |
||||||
|
|
||||||
|
//模拟启停标识
|
||||||
|
private volatile boolean flag=true; |
||||||
|
|
||||||
|
public void stopStart(){ |
||||||
|
flag = !flag; |
||||||
|
} |
||||||
|
|
||||||
|
@Async |
||||||
|
public void simulationMultiple(String stationId, Long sleepTime) { |
||||||
|
|
||||||
|
List<Device> list = getDeviceListByStationId(stationId); |
||||||
|
//查询所有属性
|
||||||
|
List<DeviceField> fieldList = deviceFieldService.list(); |
||||||
|
List<DeviceFieldGap> gapList = deviceFieldGapService.list(); |
||||||
|
|
||||||
|
log.info("本站{}有{}个设备实例,每{}毫秒发送{}条数据", stationId, list.size(), sleepTime, list.size()); |
||||||
|
while (true) { |
||||||
|
if (flag) {//启动或关闭模拟
|
||||||
|
for (Device device : list) { |
||||||
|
Map<String, DeviceData> map = simulation(stationId, device,fieldList,gapList); |
||||||
|
// log.info("map data: "+ JsonUtil.toJson(map));
|
||||||
|
if (map.get("yc") != null && map.get("yc").getChildren().size() > 0) { |
||||||
|
log.info("模拟推送遥测,主题:topic_hzinfo_props:{}", JsonUtil.toJson(map.get("yc"))); |
||||||
|
mqttSender.sendToMqtt(TopicConstant.TOPIC_HZINFO_PROPS, JsonUtil.toJson(map.get("yc"))); |
||||||
|
} |
||||||
|
// if (map.get("dd") != null && map.get("dd").getChildren().size() > 0) {
|
||||||
|
// mqttSender.sendToMqtt(TopicConstant.TOPIC_HZINFO_DD, JsonUtil.toJson(map.get("dd")));
|
||||||
|
// }
|
||||||
|
if (map.get("yx") != null && map.get("yx").getChildren().size() > 0) { |
||||||
|
mqttSender.sendToMqtt(TopicConstant.TOPIC_HZINFO_YX, JsonUtil.toJson(map.get("yx"))); |
||||||
|
} |
||||||
|
} |
||||||
|
//最小10毫秒
|
||||||
|
if (sleepTime == null || sleepTime == 0) { |
||||||
|
sleepTime = 10L; |
||||||
|
} |
||||||
|
ThreadUtil.sleep(sleepTime); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
// @Async
|
||||||
|
// public void simulationMultipleInFlow(){
|
||||||
|
// List<String> list=deviceService.selectStcd();
|
||||||
|
// while (true) {
|
||||||
|
// List<Map<String,Object>> datas = simulationFlow(list);
|
||||||
|
// for(Map<String,Object> param:datas){
|
||||||
|
// deviceService.insertData(param);
|
||||||
|
// }
|
||||||
|
// ThreadUtil.sleep(3600000);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
private List<Map<String,Object>> simulationFlow(List<String> list){ |
||||||
|
List<Map<String,Object>> datas =new ArrayList<>(); |
||||||
|
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
||||||
|
String dt=sdf.format(new Date()); |
||||||
|
for(String stcd:list){ |
||||||
|
Map<String,Object> data=new HashMap<>(); |
||||||
|
String value = getRandomRedPacketBetweenMinAndMax(new BigDecimal("0"), new BigDecimal("20")).toString(); |
||||||
|
data.put("stcd",stcd); |
||||||
|
data.put("dt",dt); |
||||||
|
data.put("inflow",value); |
||||||
|
datas.add(data); |
||||||
|
} |
||||||
|
return datas; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@Async |
||||||
|
public void simulationMultipleV4(String stationId, Long sleepTime){ |
||||||
|
String sid=getSid(stationId); |
||||||
|
List<Device> list = getDeviceListByStationId(stationId); |
||||||
|
//查询所有属性
|
||||||
|
List<DeviceField> fieldList = deviceFieldService.list(); |
||||||
|
List<DeviceFieldGap> gapList = deviceFieldGapService.list(); |
||||||
|
|
||||||
|
log.info("本站{}有{}个设备实例,每{}毫秒发送{}条数据", stationId, list.size(), sleepTime, list.size()); |
||||||
|
while (true) { |
||||||
|
if (flag) {//启动或关闭模拟
|
||||||
|
for (Device device : list) { |
||||||
|
Map<String, DeviceDataV4> map = simulationV4(stationId,sid, device,fieldList,gapList); |
||||||
|
//log.info("map data: "+ JsonUtil.toJson(map));
|
||||||
|
if (map.get("yc") != null && map.get("yc").getChildren().size() > 0) { |
||||||
|
mqttSender.sendToMqtt("hzinfo_v4_yc", JsonUtil.toJson(map.get("yc"))); |
||||||
|
} |
||||||
|
// if (map.get("dd") != null && map.get("dd").getChildren().size() > 0) {
|
||||||
|
// mqttSender.sendToMqtt(TopicConstant.TOPIC_HZINFO_DD, JsonUtil.toJson(map.get("dd")));
|
||||||
|
// }
|
||||||
|
if (map.get("yx") != null && map.get("yx").getChildren().size() > 0) { |
||||||
|
mqttSender.sendToMqtt("hzinfo_v4_yx", JsonUtil.toJson(map.get("yx"))); |
||||||
|
} |
||||||
|
} |
||||||
|
//最小10毫秒
|
||||||
|
if (sleepTime == null || sleepTime == 0) { |
||||||
|
sleepTime = 10L; |
||||||
|
} |
||||||
|
ThreadUtil.sleep(sleepTime); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static BigDecimal getRandomRedPacketBetweenMinAndMax(BigDecimal min, BigDecimal max){ |
||||||
|
float minF = min.floatValue(); |
||||||
|
float maxF = max.floatValue(); |
||||||
|
//生成随机数
|
||||||
|
BigDecimal db = new BigDecimal(Math.random() * (maxF - minF) + minF); |
||||||
|
//返回保留两位小数的随机数。不进行四舍五入
|
||||||
|
return db.setScale(3,BigDecimal.ROUND_DOWN); |
||||||
|
} |
||||||
|
|
||||||
|
public static int getIntBetweenMinAndMax(int min, int max){ |
||||||
|
//生成随机数
|
||||||
|
int randomNum = min + (int)(Math.random() * ((max - min) + 1)); |
||||||
|
//返回保留两位小数的随机数。不进行四舍五入
|
||||||
|
return randomNum; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 模拟一条数据 |
||||||
|
*/ |
||||||
|
private Map<String, DeviceData> simulation(String stationId, Device device,List<DeviceField> fieldListAll,List<DeviceFieldGap> gapListAll) { |
||||||
|
// List<DeviceField> fieldList = getListByDeviceId(device.getId());
|
||||||
|
// List<DeviceFieldGap> gapList = getListByDeviceGapId(device.getId());
|
||||||
|
List<DeviceField> fieldList =fieldListAll.stream().filter(e->e.getFacDeviceId().equals(device.getId())).collect(Collectors.toList()); |
||||||
|
List<DeviceFieldGap> gapList =gapListAll.stream().filter(e->e.getFacDeviceId().equals(device.getId())).collect(Collectors.toList()); |
||||||
|
// log.info("fieldList data: "+ JsonUtil.toJson(fieldList));
|
||||||
|
// log.info("gapList data: "+ JsonUtil.toJson(gapList));
|
||||||
|
List<Kvtq> ycList = Lists.newArrayList(); |
||||||
|
List<Kvtq> yxList = Lists.newArrayList(); |
||||||
|
//List<Kvtq> ddList = Lists.newArrayList();
|
||||||
|
for (DeviceField field : fieldList) { |
||||||
|
Optional<DeviceFieldGap> gapOpt=gapList.stream().filter(e->e.getSignage().equals(field.getSignage())).findFirst(); |
||||||
|
|
||||||
|
if (DataConstants.DeviceDataType.YC.ordinal()== field.getModelClassifyId().intValue()) { |
||||||
|
if(gapOpt!=null) { |
||||||
|
DeviceFieldGap gap=gapOpt.get(); |
||||||
|
String value = getRandomRedPacketBetweenMinAndMax(gap.getMinVal(), gap.getMaxVal()).toString(); |
||||||
|
Kvtq kvtq = Kvtq.builder().k(field.getSignage()).v(value).t(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).q(0).build(); |
||||||
|
ycList.add(kvtq); |
||||||
|
} |
||||||
|
} |
||||||
|
// if (DataConstants.DeviceDataType.DD.name().equals(field.getType())) {
|
||||||
|
// String value = Func.random(1, RandomType.INT) + "." + Func.random(1, RandomType.INT);
|
||||||
|
// Kvtq kvtq = Kvtq.builder().k(field.getId()).v(value).t(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).q(0).build();
|
||||||
|
// ddList.add(kvtq);
|
||||||
|
// }
|
||||||
|
if (DataConstants.DeviceDataType.YX.ordinal()== field.getModelClassifyId().intValue()) { |
||||||
|
if(gapOpt!=null) { |
||||||
|
DeviceFieldGap gap=gapOpt.get(); |
||||||
|
int value = getIntBetweenMinAndMax(gap.getMinVal().intValue(), gap.getMaxVal().intValue()); |
||||||
|
Kvtq kvtq = Kvtq.builder().k(field.getSignage()).v(String.valueOf(value)).t(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).q(0).build(); |
||||||
|
yxList.add(kvtq); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
Map<String, DeviceData> map = Maps.newHashMap(); |
||||||
|
if (ycList.size() > 0) { |
||||||
|
map.put("yc", DeviceData.builder().station(stationId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(ycList).build()); |
||||||
|
} |
||||||
|
// if (ddList.size() > 0) {
|
||||||
|
// map.put("dd", DeviceData.builder().station(stationId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(ddList).build());
|
||||||
|
// }
|
||||||
|
if (yxList.size() > 0) { |
||||||
|
map.put("yx", DeviceData.builder().station(stationId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(yxList).build()); |
||||||
|
} |
||||||
|
return map; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
private Map<String, DeviceDataV4> simulationV4(String stationId,String sid, Device device,List<DeviceField> fieldListAll,List<DeviceFieldGap> gapListAll) { |
||||||
|
|
||||||
|
// List<DeviceField> fieldList = getListByDeviceId(device.getId());
|
||||||
|
// List<DeviceFieldGap> gapList = getListByDeviceGapId(device.getId());
|
||||||
|
List<DeviceField> fieldList =fieldListAll.stream().filter(e->e.getFacDeviceId().equals(device.getId())).collect(Collectors.toList()); |
||||||
|
List<DeviceFieldGap> gapList =gapListAll.stream().filter(e->e.getFacDeviceId().equals(device.getId())).collect(Collectors.toList()); |
||||||
|
// log.info("fieldList data: "+ JsonUtil.toJson(fieldList));
|
||||||
|
// log.info("gapList data: "+ JsonUtil.toJson(gapList));
|
||||||
|
List<KvtqV4> ycList = Lists.newArrayList(); |
||||||
|
List<KvtqV4> yxList = Lists.newArrayList(); |
||||||
|
//List<Kvtq> ddList = Lists.newArrayList();
|
||||||
|
for (DeviceField field : fieldList) { |
||||||
|
Optional<DeviceFieldGap> gapOpt=gapList.stream().filter(e->e.getSignage().equals(field.getSignage())).findFirst(); |
||||||
|
|
||||||
|
if (DataConstants.DeviceDataType.YC.ordinal()== field.getModelClassifyId().intValue()) { |
||||||
|
if(gapOpt!=null) { |
||||||
|
DeviceFieldGap gap=gapOpt.get(); |
||||||
|
String value = getRandomRedPacketBetweenMinAndMax(gap.getMinVal(), gap.getMaxVal()).toString(); |
||||||
|
KvtqV4 kvtq = KvtqV4.builder().sid(sid).k(field.getSignage()).v(value).t(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).q(0).build(); |
||||||
|
ycList.add(kvtq); |
||||||
|
} |
||||||
|
} |
||||||
|
// if (DataConstants.DeviceDataType.DD.name().equals(field.getType())) {
|
||||||
|
// String value = Func.random(1, RandomType.INT) + "." + Func.random(1, RandomType.INT);
|
||||||
|
// Kvtq kvtq = Kvtq.builder().k(field.getId()).v(value).t(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).q(0).build();
|
||||||
|
// ddList.add(kvtq);
|
||||||
|
// }
|
||||||
|
if (DataConstants.DeviceDataType.YX.ordinal()== field.getModelClassifyId().intValue()) { |
||||||
|
if(gapOpt!=null) { |
||||||
|
DeviceFieldGap gap=gapOpt.get(); |
||||||
|
int value = getIntBetweenMinAndMax(gap.getMinVal().intValue(), gap.getMaxVal().intValue()); |
||||||
|
KvtqV4 kvtq = KvtqV4.builder().sid(sid).k(field.getSignage()).v(String.valueOf(value)).t(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).q(0).build(); |
||||||
|
yxList.add(kvtq); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
Map<String, DeviceDataV4> map = Maps.newHashMap(); |
||||||
|
if (ycList.size() > 0) { |
||||||
|
map.put("yc", DeviceDataV4.builder().stationId(stationId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(ycList).build()); |
||||||
|
} |
||||||
|
// if (ddList.size() > 0) {
|
||||||
|
// map.put("dd", DeviceData.builder().station(stationId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(ddList).build());
|
||||||
|
// }
|
||||||
|
if (yxList.size() > 0) { |
||||||
|
map.put("yx", DeviceDataV4.builder().stationId(stationId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(yxList).build()); |
||||||
|
} |
||||||
|
return map; |
||||||
|
} |
||||||
|
|
||||||
|
private List<DeviceField> getListByDeviceId(String deviceId) { |
||||||
|
return deviceFieldService.list(Wrappers.<DeviceField>lambdaQuery().ne(DeviceField::getModelClassifyId, DataConstants.DeviceDataType.SOE.name()).eq(DeviceField::getFacDeviceId, deviceId)); |
||||||
|
} |
||||||
|
|
||||||
|
private List<DeviceFieldGap> getListByDeviceGapId(String deviceId){ |
||||||
|
return deviceFieldGapService.list(Wrappers.<DeviceFieldGap>lambdaQuery().eq(DeviceFieldGap::getFacDeviceId, deviceId)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
package com.hnac.hzims.simulate.service; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
public interface WriteRealDataService { |
||||||
|
|
||||||
|
void writeRealGateData(String param); |
||||||
|
|
||||||
|
void writeRealRainData(String param); |
||||||
|
|
||||||
|
Boolean isOpen(String deviceCode, Long isOpen); |
||||||
|
} |
@ -0,0 +1,304 @@ |
|||||||
|
package com.hnac.hzims.simulate.service.impl; |
||||||
|
|
||||||
|
import com.hnac.hzims.equipment.entity.EmInfoEntity; |
||||||
|
import com.hnac.hzims.equipment.feign.IEmInfoClient; |
||||||
|
import com.hnac.hzims.hzimsweather.feign.IHeWeatherWeatherClient; |
||||||
|
import com.hnac.hzims.hzimsweather.response.weather.HeWeatherWeatherNowResponse; |
||||||
|
import com.hnac.hzims.simulate.constants.WriteRealDataConstant; |
||||||
|
import com.hnac.hzims.simulate.entity.*; |
||||||
|
import com.hnac.hzims.simulate.mapper.DeviceFacConfigMapper; |
||||||
|
import com.hnac.hzims.simulate.mapper.DeviceFieldGapMapper; |
||||||
|
import com.hnac.hzims.simulate.mapper.DeviceFieldMapper; |
||||||
|
import com.hnac.hzims.simulate.mapper.DeviceRainGapMapper; |
||||||
|
import com.hnac.hzims.simulate.service.WriteRealDataService; |
||||||
|
import com.hnac.hzims.simulate.util.DataConstants; |
||||||
|
import com.hnac.hzims.simulate.util.TopicConstant; |
||||||
|
import lombok.RequiredArgsConstructor; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.jackson.JsonUtil; |
||||||
|
import org.springblade.core.tool.utils.*; |
||||||
|
import org.springblade.mqtt.producer.IMqttSender; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.text.DecimalFormat; |
||||||
|
import java.time.LocalDateTime; |
||||||
|
import java.util.Date; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Optional; |
||||||
|
import java.util.stream.Collectors; |
||||||
|
|
||||||
|
import static com.hnac.hzims.simulate.constants.WriteRealDataConstant.REAL_DATA_V3; |
||||||
|
import static com.hnac.hzims.simulate.constants.WriteRealDataConstant.REAL_DATA_V4; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@Slf4j |
||||||
|
@RequiredArgsConstructor |
||||||
|
public class WriteRealDataServiceImpl implements WriteRealDataService { |
||||||
|
|
||||||
|
private final IEmInfoClient deviceClient; |
||||||
|
|
||||||
|
private final IHeWeatherWeatherClient weatherClient; |
||||||
|
|
||||||
|
private final IMqttSender mqttSender; |
||||||
|
|
||||||
|
private final DeviceFieldMapper fieldMapper; |
||||||
|
|
||||||
|
private final DeviceFieldGapMapper limitMapper; |
||||||
|
|
||||||
|
private final DeviceFacConfigMapper configMapper; |
||||||
|
|
||||||
|
private final DeviceRainGapMapper deviceRainGapMapper; |
||||||
|
|
||||||
|
/** |
||||||
|
* 实时数据写入 |
||||||
|
* @param param |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public void writeRealGateData(String param) { |
||||||
|
// 查询设备配置
|
||||||
|
List<DeviceFacConfig> configs = configMapper.queryConfigDevice(WriteRealDataConstant.WRITE_GATE); |
||||||
|
if(CollectionUtil.isEmpty(configs)){ |
||||||
|
return; |
||||||
|
} |
||||||
|
//#.000 表示三位小数
|
||||||
|
DecimalFormat df = new DecimalFormat("#0.000"); |
||||||
|
// 遍历发送mqtt实时数据
|
||||||
|
configs.stream().collect(Collectors.groupingBy(DeviceFacConfig::getModelKind)).forEach((modeKind,groups)->{ |
||||||
|
// 查询设备属性
|
||||||
|
List<DeviceField> fields = fieldMapper.queryDeviceFields(groups.stream().map(DeviceFacConfig::getFacDeviceId).collect(Collectors.toList())); |
||||||
|
if(CollectionUtil.isEmpty(fields)){ |
||||||
|
return; |
||||||
|
} |
||||||
|
// 查询设备限制
|
||||||
|
List<DeviceFieldGap> limits = limitMapper.queryDeviceLimits(fields.stream().map(DeviceField::getSignage).collect(Collectors.toList())); |
||||||
|
if(CollectionUtil.isEmpty(limits)){ |
||||||
|
return; |
||||||
|
} |
||||||
|
// v3
|
||||||
|
if(REAL_DATA_V3.equals(modeKind)){ |
||||||
|
fields.stream().collect(Collectors.groupingBy(DeviceField::getModelClassifyId)).forEach((key, models) -> models.stream().collect(Collectors.groupingBy(DeviceField::getProjectId)).forEach((projectId, value)-> { |
||||||
|
// 遥测实时数据对象
|
||||||
|
List<Kvtq> ycs = value.stream().filter(o -> DataConstants.DeviceDataType.YC.ordinal() == o.getModelClassifyId()).map(field -> { |
||||||
|
List<DeviceFieldGap> limit = limits.stream().filter(e -> e.getSignage().equals(field.getSignage())).collect(Collectors.toList()); |
||||||
|
if (CollectionUtil.isEmpty(limit)) { |
||||||
|
return new Kvtq(); |
||||||
|
} |
||||||
|
Kvtq real = new Kvtq(); |
||||||
|
double random = Math.random() * limit.get(0).getMaxVal().subtract(limit.get(0).getMinVal()).doubleValue() + limit.get(0).getMinVal().doubleValue(); |
||||||
|
real.setK(field.getSignage()); |
||||||
|
real.setV(df.format(random)); |
||||||
|
real.setT(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS")); |
||||||
|
real.setQ(0); |
||||||
|
return real; |
||||||
|
}).filter(ObjectUtil::isNotEmpty).collect(Collectors.toList()); |
||||||
|
if (CollectionUtil.isNotEmpty(ycs)) { |
||||||
|
log.error("yc_real_data_v3 : {}", JsonUtil.toJson(DeviceData.builder().station(projectId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(ycs).build())); |
||||||
|
mqttSender.sendToMqtt(TopicConstant.TOPIC_HZINFO_PROPS, JsonUtil.toJson(DeviceData.builder().station(projectId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(ycs).build())); |
||||||
|
} |
||||||
|
// 遥信实时数据对象
|
||||||
|
List<Kvtq> yxs = value.stream().filter(o -> DataConstants.DeviceDataType.YX.ordinal() == o.getModelClassifyId()).map(field -> { |
||||||
|
List<DeviceFieldGap> limit = limits.stream().filter(e -> e.getSignage().equals(field.getSignage())).collect(Collectors.toList()); |
||||||
|
if (CollectionUtil.isEmpty(limit)) { |
||||||
|
return new Kvtq(); |
||||||
|
} |
||||||
|
Kvtq real = new Kvtq(); |
||||||
|
double random = limit.get(0).getMaxVal().subtract(limit.get(0).getMinVal()).doubleValue() + limit.get(0).getMinVal().doubleValue(); |
||||||
|
real.setK(field.getSignage()); |
||||||
|
real.setV(df.format(random)); |
||||||
|
real.setT(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS")); |
||||||
|
real.setQ(0); |
||||||
|
return real; |
||||||
|
}).collect(Collectors.toList()); |
||||||
|
if (CollectionUtil.isNotEmpty(yxs)) { |
||||||
|
log.error("yx_real_data_v3 : {}", JsonUtil.toJson(DeviceData.builder().station(projectId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(yxs).build())); |
||||||
|
mqttSender.sendToMqtt(TopicConstant.TOPIC_HZINFO_YX, JsonUtil.toJson(DeviceData.builder().station(projectId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(yxs).build())); |
||||||
|
} |
||||||
|
})); |
||||||
|
} |
||||||
|
// v4
|
||||||
|
if(REAL_DATA_V4.equals(modeKind)){ |
||||||
|
fields.stream().collect(Collectors.groupingBy(DeviceField::getModelClassifyId)).forEach((key, models) -> models.stream().collect(Collectors.groupingBy(DeviceField::getProjectId)).forEach((projectId, value)->{ |
||||||
|
// 遥测实时数据对象
|
||||||
|
List<KvtqV4> ycs = value.stream().filter(o -> DataConstants.DeviceDataType.YC.ordinal() == o.getModelClassifyId()).map(field -> { |
||||||
|
List<DeviceFieldGap> limit = limits.stream().filter(e -> e.getSignage().equals(field.getSignage())).collect(Collectors.toList()); |
||||||
|
if (CollectionUtil.isEmpty(limit)) { |
||||||
|
return new KvtqV4(); |
||||||
|
} |
||||||
|
// 查找sid
|
||||||
|
Optional<DeviceFacConfig> sid = groups.stream().filter(group->field.getFacDeviceId().equals(group.getFacDeviceId())).findFirst(); |
||||||
|
if(!sid.isPresent()){ |
||||||
|
return new KvtqV4(); |
||||||
|
} |
||||||
|
KvtqV4 real = new KvtqV4(); |
||||||
|
double random = Math.random() * limit.get(0).getMaxVal().subtract(limit.get(0).getMinVal()).doubleValue() + limit.get(0).getMinVal().doubleValue(); |
||||||
|
real.setSid(sid.get().getSid()); |
||||||
|
real.setK(field.getSignage()); |
||||||
|
real.setV(df.format(random)); |
||||||
|
real.setT(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS")); |
||||||
|
real.setQ(0); |
||||||
|
return real; |
||||||
|
}).filter(ObjectUtil::isNotEmpty).collect(Collectors.toList()); |
||||||
|
if (CollectionUtil.isNotEmpty(ycs)) { |
||||||
|
log.error("yc_real_data_v4 : {}",JsonUtil.toJson(DeviceDataV4.builder().stationId(projectId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(ycs).build())); |
||||||
|
mqttSender.sendToMqtt(TopicConstant.TOPIC_HZINFO_V4_YC,JsonUtil.toJson(DeviceDataV4.builder().stationId(projectId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(ycs).build())); |
||||||
|
} |
||||||
|
// 遥信实时数据对象
|
||||||
|
List<KvtqV4> yxs = value.stream().filter(o -> DataConstants.DeviceDataType.YX.ordinal() == o.getModelClassifyId()).map(field -> { |
||||||
|
List<DeviceFieldGap> limit = limits.stream().filter(e -> e.getSignage().equals(field.getSignage())).collect(Collectors.toList()); |
||||||
|
if (CollectionUtil.isEmpty(limit)) { |
||||||
|
return new KvtqV4(); |
||||||
|
} |
||||||
|
// 查找sid
|
||||||
|
Optional<DeviceFacConfig> sid = groups.stream().filter(group->field.getFacDeviceId().equals(group.getFacDeviceId())).findFirst(); |
||||||
|
if(!sid.isPresent()){ |
||||||
|
return new KvtqV4(); |
||||||
|
} |
||||||
|
KvtqV4 real = new KvtqV4(); |
||||||
|
double random = limit.get(0).getMaxVal().subtract(limit.get(0).getMinVal()).doubleValue() + limit.get(0).getMinVal().doubleValue(); |
||||||
|
real.setSid(sid.get().getSid()); |
||||||
|
real.setK(field.getSignage()); |
||||||
|
real.setV(df.format(random)); |
||||||
|
real.setT(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS")); |
||||||
|
real.setQ(0); |
||||||
|
return real; |
||||||
|
}).collect(Collectors.toList()); |
||||||
|
if (CollectionUtil.isNotEmpty(yxs)) { |
||||||
|
log.error("yx_real_data_v4 : {}",JsonUtil.toJson(DeviceDataV4.builder().stationId(projectId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(yxs).build())); |
||||||
|
mqttSender.sendToMqtt(TopicConstant.TOPIC_HZINFO_V4_YX,JsonUtil.toJson(DeviceDataV4.builder().stationId(projectId).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(yxs).build())); |
||||||
|
} |
||||||
|
})); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 雨量站实时数据写入 |
||||||
|
* @param param |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public void writeRealRainData(String param) { |
||||||
|
// 查询设备配置
|
||||||
|
List<DeviceFacConfig> configs = configMapper.queryConfigDevice(WriteRealDataConstant.WRITE_RAIN); |
||||||
|
if(CollectionUtil.isEmpty(configs)){ |
||||||
|
return; |
||||||
|
} |
||||||
|
R<List<EmInfoEntity>> devices = deviceClient.getEmInfoByEmCodes(configs.stream().map(DeviceFacConfig::getDeviceCode).collect(Collectors.toList())); |
||||||
|
if(!devices.isSuccess() || CollectionUtil.isEmpty(devices.getData())){ |
||||||
|
return; |
||||||
|
} |
||||||
|
devices.getData().forEach(device->{ |
||||||
|
if(ObjectUtil.isEmpty(device.getLgtd()) || ObjectUtil.isEmpty(device.getLttd())){ |
||||||
|
return; |
||||||
|
} |
||||||
|
// 查询设备经纬度
|
||||||
|
String location = device.getLgtd() + "," + device.getLttd(); |
||||||
|
R<HeWeatherWeatherNowResponse> weather = weatherClient.getWeatherNowWithCache(location); |
||||||
|
if(!weather.isSuccess() || ObjectUtil.isEmpty(weather.getData()) || ObjectUtil.isEmpty(weather.getData().getNow())){ |
||||||
|
return; |
||||||
|
} |
||||||
|
Optional<DeviceFacConfig> optional = configs.stream().filter(o->o.getDeviceCode().equals(device.getNumber())).findFirst(); |
||||||
|
if(!optional.isPresent()){ |
||||||
|
return; |
||||||
|
} |
||||||
|
List<DeviceRainGap> deviceRainGap = deviceRainGapMapper.RainGapByFacDeviceId(optional.get().getFacDeviceId()); |
||||||
|
if(CollectionUtil.isEmpty(deviceRainGap)){ |
||||||
|
return; |
||||||
|
} |
||||||
|
List<KvtqV4> yxs = deviceRainGap.stream().map(o->{ |
||||||
|
KvtqV4 real = new KvtqV4(); |
||||||
|
real.setSid(optional.get().getSid()); |
||||||
|
real.setK(o.getSignage()); |
||||||
|
real.setT(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS")); |
||||||
|
real.setQ(0); |
||||||
|
if(WriteRealDataConstant.ATTR_RAIN.equals(o.getAttribute())){ |
||||||
|
real.setV(weather.getData().getNow().getPrecip()); |
||||||
|
}else if(WriteRealDataConstant.ATTR_WIND360.equals(o.getAttribute())){ |
||||||
|
real.setV(weather.getData().getNow().getWind360()); |
||||||
|
}else if(WriteRealDataConstant.ATTR_WIND_SCALE.equals(o.getAttribute())){ |
||||||
|
real.setV(weather.getData().getNow().getWindScale()); |
||||||
|
}else if(WriteRealDataConstant.ATTR_WIND_SPEED.equals(o.getAttribute())){ |
||||||
|
real.setV(weather.getData().getNow().getWindSpeed()); |
||||||
|
}else if(WriteRealDataConstant.ATTR_HUMIDITY.equals(o.getAttribute())){ |
||||||
|
real.setV(weather.getData().getNow().getHumidity()); |
||||||
|
}else if(WriteRealDataConstant.ATTR_PRESSURE.equals(o.getAttribute())){ |
||||||
|
real.setV(weather.getData().getNow().getPressure()); |
||||||
|
}else if(WriteRealDataConstant.ATTR_VIS.equals(o.getAttribute())){ |
||||||
|
real.setV(weather.getData().getNow().getVis()); |
||||||
|
}else if(WriteRealDataConstant.ATTR_CLOUD.equals(o.getAttribute())){ |
||||||
|
real.setV(weather.getData().getNow().getCloud()); |
||||||
|
}else if(WriteRealDataConstant.ATTR_DEW.equals(o.getAttribute())){ |
||||||
|
real.setV(weather.getData().getNow().getDew()); |
||||||
|
}else if(WriteRealDataConstant.ATTR_FEELS_LIKE.equals(o.getAttribute())){ |
||||||
|
real.setV(weather.getData().getNow().getFeelsLike()); |
||||||
|
}else if(WriteRealDataConstant.ATTR_TEMP.equals(o.getAttribute())){ |
||||||
|
real.setV(weather.getData().getNow().getTemp()); |
||||||
|
} |
||||||
|
if(StringUtil.isEmpty(real.getV())){ |
||||||
|
real.setV("0.0"); |
||||||
|
} |
||||||
|
return real; |
||||||
|
}).collect(Collectors.toList()); |
||||||
|
if (CollectionUtil.isNotEmpty(yxs)) { |
||||||
|
log.error("yx_real_data_v4 : {}",JsonUtil.toJson(DeviceDataV4.builder().stationId(optional.get().getStationId()).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(yxs).build())); |
||||||
|
mqttSender.sendToMqtt(TopicConstant.TOPIC_HZINFO_V4_YX,JsonUtil.toJson(DeviceDataV4.builder().stationId(optional.get().getStationId()).time(DateTimeUtil.format(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss.SSS")).children(yxs).build())); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 开启/关闭闸门数据 |
||||||
|
* @param deviceCode |
||||||
|
* @param isOpen |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public Boolean isOpen(String deviceCode, Long isOpen) { |
||||||
|
// 查询写入设备配置
|
||||||
|
DeviceFacConfig config = configMapper.configByDeviceCode(deviceCode); |
||||||
|
if(ObjectUtil.isEmpty(config)){ |
||||||
|
return false; |
||||||
|
} |
||||||
|
// 查询设备属性
|
||||||
|
List<DeviceField> fields = fieldMapper.querySignages(config.getFacDeviceId()); |
||||||
|
if(CollectionUtil.isEmpty(fields)){ |
||||||
|
return false; |
||||||
|
} |
||||||
|
// 查询属性限制
|
||||||
|
List<DeviceFieldGap> limits = limitMapper.queryDeviceLimits(fields.stream().map(DeviceField::getSignage).collect(Collectors.toList())); |
||||||
|
if(CollectionUtil.isEmpty(limits)){ |
||||||
|
return false; |
||||||
|
} |
||||||
|
limits.forEach(limit->{ |
||||||
|
Optional<DeviceField> optional = fields.stream().filter(o->o.getSignage().equals(limit.getSignage())).findFirst(); |
||||||
|
if(!optional.isPresent()){ |
||||||
|
return; |
||||||
|
} |
||||||
|
String signage = optional.get().getName(); |
||||||
|
if(WriteRealDataConstant.GATE_STATUS.equals(signage)){ |
||||||
|
if(WriteRealDataConstant.OPEN.equals(isOpen)){ |
||||||
|
limitMapper.updateLimitById(BigDecimal.ONE,BigDecimal.ZERO,limit.getId()); |
||||||
|
}else{ |
||||||
|
limitMapper.updateLimitById(BigDecimal.ZERO,BigDecimal.ZERO,limit.getId()); |
||||||
|
} |
||||||
|
}else if(WriteRealDataConstant.GATE_FLOW.equals(signage)){ |
||||||
|
if(WriteRealDataConstant.OPEN.equals(isOpen)){ |
||||||
|
limitMapper.updateLimitById(BigDecimal.valueOf(3560.000),BigDecimal.valueOf(0.000),limit.getId()); |
||||||
|
}else{ |
||||||
|
limitMapper.updateLimitById(BigDecimal.ZERO,BigDecimal.ZERO,limit.getId()); |
||||||
|
} |
||||||
|
}else if(WriteRealDataConstant.OPENING_DEGREE.equals(signage)){ |
||||||
|
if(WriteRealDataConstant.OPEN.equals(isOpen)){ |
||||||
|
limitMapper.updateLimitById(BigDecimal.valueOf(10),BigDecimal.valueOf(0.000),limit.getId()); |
||||||
|
}else{ |
||||||
|
limitMapper.updateLimitById(BigDecimal.ZERO,BigDecimal.ZERO,limit.getId()); |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
return true; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,357 @@ |
|||||||
|
package com.hnac.hzims.simulate.util; |
||||||
|
|
||||||
|
public interface DataConstants { |
||||||
|
String REDIS_MESSAGE_TOPIC = "hzinfo_config_message_topic"; |
||||||
|
String TIME_COLUMN = "ts"; |
||||||
|
String VALUE_COLUMN = "val"; |
||||||
|
String Q_COLUMN = "q"; |
||||||
|
String REAL_ID_COLUMN = "realid"; |
||||||
|
String TBNAME = "tbname"; |
||||||
|
String YC_TABLE_PREFIX = "yc_"; |
||||||
|
String YX_TABLE_PREFIX = "yx_"; |
||||||
|
String SOE_TABLE_PREFIX = "soe_"; |
||||||
|
String SOE_ALARM_TABLE_PREFIX = "soe_alarm_"; |
||||||
|
String YC = "YC"; |
||||||
|
String YX = "YX"; |
||||||
|
String SOE = "SOE"; |
||||||
|
String YK_RETURN_PREFIX = "ykfj:"; |
||||||
|
String REALID_CALCULATE = "16777215"; |
||||||
|
String DEVICE_SUPER_TABLE_PREFIX = "hz_"; |
||||||
|
String DEVICE_TABLE_PREFIX = "d_"; |
||||||
|
|
||||||
|
public static enum DataStructTypeEnum { |
||||||
|
struct, |
||||||
|
dataGroup; |
||||||
|
|
||||||
|
private DataStructTypeEnum() { |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum EYkRetStatus { |
||||||
|
yrsSuccess, |
||||||
|
yrsServerErr, |
||||||
|
yrsChannelErr, |
||||||
|
yrsModuleErr, |
||||||
|
yrsDeviceTimeOut, |
||||||
|
yrsDeviceFail, |
||||||
|
yrsExpired; |
||||||
|
|
||||||
|
private EYkRetStatus() { |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum SoeType { |
||||||
|
skNone(0, "0", "默认"), |
||||||
|
skSys(1, "1", "系统"), |
||||||
|
skAlarm(2, "2", "报警"), |
||||||
|
skAct(3, "3", "事故"), |
||||||
|
skOperate(4, "4", "用户操作"), |
||||||
|
skYcOut(5, "5,11,12", "遥测越限"), |
||||||
|
skYxChange(6, "6,10", "遥信变位"), |
||||||
|
skReg(7, "7", "注册信息"), |
||||||
|
skHint(8, "8", "信息提示"), |
||||||
|
skInspect(9, "9", "设备巡检"), |
||||||
|
skMonitorOperate(10, "13,14", "遥控操作"), |
||||||
|
skRDSYcOutOfLimitResume(11, "15", "遥测越限恢复"), |
||||||
|
skUndefine(12, "16,17,18", "未定义"), |
||||||
|
skNetworkAnomaly(13, "-1", "通讯异常"), |
||||||
|
skCommunicateAnomaly(14, "-2", "数据异常"); |
||||||
|
|
||||||
|
private Integer index; |
||||||
|
private String soeKind; |
||||||
|
private String name; |
||||||
|
|
||||||
|
private SoeType(Integer index, String soeKind, String name) { |
||||||
|
this.index = index; |
||||||
|
this.soeKind = soeKind; |
||||||
|
this.name = name; |
||||||
|
} |
||||||
|
|
||||||
|
public static String getName(Integer id) { |
||||||
|
SoeType[] values = values(); |
||||||
|
|
||||||
|
for (int i = 0; i < values.length; ++i) { |
||||||
|
if (values[i].index.equals(id)) { |
||||||
|
return values[i].getName(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return null; |
||||||
|
} |
||||||
|
|
||||||
|
public static Integer getIndexBySoeKind(String soeType) { |
||||||
|
SoeType[] values = values(); |
||||||
|
SoeType[] var2 = values; |
||||||
|
int var3 = values.length; |
||||||
|
|
||||||
|
for (int var4 = 0; var4 < var3; ++var4) { |
||||||
|
SoeType type = var2[var4]; |
||||||
|
if (type.getSoeKind().contains(soeType)) { |
||||||
|
return type.getIndex(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return skUndefine.getIndex(); |
||||||
|
} |
||||||
|
|
||||||
|
public static String getSoeKindByIndex(Integer index) { |
||||||
|
SoeType[] values = values(); |
||||||
|
SoeType[] var2 = values; |
||||||
|
int var3 = values.length; |
||||||
|
|
||||||
|
for (int var4 = 0; var4 < var3; ++var4) { |
||||||
|
SoeType type = var2[var4]; |
||||||
|
if (type.getIndex().equals(index)) { |
||||||
|
return type.getSoeKind(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return ""; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getIndex() { |
||||||
|
return this.index; |
||||||
|
} |
||||||
|
|
||||||
|
public String getSoeKind() { |
||||||
|
return this.soeKind; |
||||||
|
} |
||||||
|
|
||||||
|
public String getName() { |
||||||
|
return this.name; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum SoeKind { |
||||||
|
skNone(0, "默认"), |
||||||
|
skSys(1, "系统"), |
||||||
|
skAlarm(2, "报警"), |
||||||
|
skAct(3, "事故"), |
||||||
|
skOperate(4, "操作"), |
||||||
|
skYcOut(5, "遥测越限(告警)"), |
||||||
|
skYxChange(6, "遥信变位(告警)"), |
||||||
|
skReg(7, "注册信息"), |
||||||
|
skHint(8, "信息提示"), |
||||||
|
skInspect(9, "设备巡检"), |
||||||
|
skRDSYxChange(10, "遥信变位(数据)"), |
||||||
|
skRDSYcOutOfLimit(11, "遥测越上/下限(数据)"), |
||||||
|
skRDSYcOutOfLimit2(12, "遥测越上上/下下限(数据)"), |
||||||
|
skMonitorOperate(13, "操作记录(遥控)"), |
||||||
|
skMonitorOperateII(14, "操作记录(写定值)"), |
||||||
|
skRDSYcOutOfLimitResume(15, "越限恢复"), |
||||||
|
bak_7(16, "备用7"), |
||||||
|
bak_8(17, "备用8"), |
||||||
|
skUndefine(18, "未定义"); |
||||||
|
|
||||||
|
private Integer index; |
||||||
|
private String name; |
||||||
|
|
||||||
|
private SoeKind(Integer index, String name) { |
||||||
|
this.index = index; |
||||||
|
this.name = name; |
||||||
|
} |
||||||
|
|
||||||
|
public static String getName(Integer id) { |
||||||
|
SoeKind[] values = values(); |
||||||
|
|
||||||
|
for (int i = 0; i < values.length; ++i) { |
||||||
|
if (values[i].index.equals(id)) { |
||||||
|
return values[i].getName(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return null; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getIndex() { |
||||||
|
return this.index; |
||||||
|
} |
||||||
|
|
||||||
|
public String getName() { |
||||||
|
return this.name; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum DeviceDataType { |
||||||
|
YC("遥测"), |
||||||
|
YX("遥信"), |
||||||
|
DD("电渡"), |
||||||
|
YK("遥控"), |
||||||
|
YT("遥调"), |
||||||
|
SOE("事件"), |
||||||
|
STR("字符串"), |
||||||
|
OTHER("其它"); |
||||||
|
|
||||||
|
private String displayName; |
||||||
|
|
||||||
|
private DeviceDataType(String displayName) { |
||||||
|
this.displayName = displayName; |
||||||
|
} |
||||||
|
|
||||||
|
public static String getDisplayName(String name) { |
||||||
|
DeviceDataType type = valueOf(name); |
||||||
|
return type.getDisplayName(); |
||||||
|
} |
||||||
|
|
||||||
|
public String getDisplayName() { |
||||||
|
return this.displayName; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum YkDelayType { |
||||||
|
none_store, |
||||||
|
store, |
||||||
|
delay_store; |
||||||
|
|
||||||
|
private YkDelayType() { |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum RedisGroupMessageTypeEnum { |
||||||
|
NOTICE_CLEAN_LOCAL_CACHE_DEVICE("clean.local.cache.device"), |
||||||
|
NOTICE_CLEAN_LOCAL_CACHE_DEVICE_GROUP("clean.local.cache.group"), |
||||||
|
NOTICE_CLEAN_LOCAL_CACHE_ALARM("clean.local.cache.alarm"), |
||||||
|
NOTICE_CLEAN_LOCAL_CACHE_YK("clean.local.cache.yk"); |
||||||
|
|
||||||
|
private String value; |
||||||
|
|
||||||
|
private RedisGroupMessageTypeEnum(String value) { |
||||||
|
this.value = value; |
||||||
|
} |
||||||
|
|
||||||
|
public String getValue() { |
||||||
|
return this.value; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum DataStatusEnum { |
||||||
|
offline, |
||||||
|
online; |
||||||
|
|
||||||
|
private DataStatusEnum() { |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum StatisticsType { |
||||||
|
avg("AVG"), |
||||||
|
max("MAX"), |
||||||
|
min("MIN"); |
||||||
|
|
||||||
|
private String computeStrategy; |
||||||
|
|
||||||
|
private StatisticsType(String fun) { |
||||||
|
this.computeStrategy = fun; |
||||||
|
} |
||||||
|
|
||||||
|
public static StatisticsType getStatisticsType(int index) { |
||||||
|
StatisticsType[] values = values(); |
||||||
|
StatisticsType[] var2 = values; |
||||||
|
int var3 = values.length; |
||||||
|
|
||||||
|
for (int var4 = 0; var4 < var3; ++var4) { |
||||||
|
StatisticsType value = var2[var4]; |
||||||
|
if (index == value.ordinal()) { |
||||||
|
return value; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return null; |
||||||
|
} |
||||||
|
|
||||||
|
public String getComputeStrategy() { |
||||||
|
return this.computeStrategy; |
||||||
|
} |
||||||
|
|
||||||
|
public void setComputeStrategy(final String computeStrategy) { |
||||||
|
this.computeStrategy = computeStrategy; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum AnalyzeInstanceAlarmConfType { |
||||||
|
changeAlarm("变化告警"), |
||||||
|
supassAlarm("越限告警"); |
||||||
|
|
||||||
|
private String name; |
||||||
|
|
||||||
|
private AnalyzeInstanceAlarmConfType(String name) { |
||||||
|
this.name = name; |
||||||
|
} |
||||||
|
|
||||||
|
public String getName() { |
||||||
|
return this.name; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum StatisticsAnalyEnum { |
||||||
|
Hour("h"), |
||||||
|
Day("d"), |
||||||
|
Month("n"), |
||||||
|
Year("h"); |
||||||
|
|
||||||
|
private String type; |
||||||
|
|
||||||
|
private StatisticsAnalyEnum(String fun) { |
||||||
|
this.type = fun; |
||||||
|
} |
||||||
|
|
||||||
|
public static StatisticsAnalyEnum getStatisticsAnalyEnum(int index) { |
||||||
|
StatisticsAnalyEnum[] values = values(); |
||||||
|
StatisticsAnalyEnum[] var2 = values; |
||||||
|
int var3 = values.length; |
||||||
|
|
||||||
|
for (int var4 = 0; var4 < var3; ++var4) { |
||||||
|
StatisticsAnalyEnum value = var2[var4]; |
||||||
|
if (value.ordinal() == index) { |
||||||
|
return value; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return null; |
||||||
|
} |
||||||
|
|
||||||
|
public String getType() { |
||||||
|
return this.type; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum StationFromSouceEnum { |
||||||
|
cloud, |
||||||
|
station; |
||||||
|
|
||||||
|
private StationFromSouceEnum() { |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum AnalyzeInstanceDataResoureEnum { |
||||||
|
deviceUp("设备上报"), |
||||||
|
hz3000Up("华自网关上报"); |
||||||
|
|
||||||
|
private String name; |
||||||
|
|
||||||
|
private AnalyzeInstanceDataResoureEnum(String name) { |
||||||
|
this.name = name; |
||||||
|
} |
||||||
|
|
||||||
|
public String getName() { |
||||||
|
return this.name; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum ThresholdLevelEnum { |
||||||
|
one, |
||||||
|
two, |
||||||
|
three; |
||||||
|
|
||||||
|
private ThresholdLevelEnum() { |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static enum Hz3000VersionEnum { |
||||||
|
v3, |
||||||
|
v4; |
||||||
|
|
||||||
|
private Hz3000VersionEnum() { |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,105 @@ |
|||||||
|
package com.hnac.hzims.simulate.util; |
||||||
|
|
||||||
|
import com.fasterxml.jackson.core.JsonProcessingException; |
||||||
|
import com.google.common.collect.Lists; |
||||||
|
import com.hnac.hzims.simulate.entity.DataItem; |
||||||
|
import com.hnac.hzims.simulate.entity.DataModel; |
||||||
|
import org.dom4j.Document; |
||||||
|
import org.dom4j.DocumentException; |
||||||
|
import org.dom4j.Element; |
||||||
|
import org.dom4j.io.SAXReader; |
||||||
|
import org.xml.sax.SAXException; |
||||||
|
|
||||||
|
import java.io.InputStream; |
||||||
|
import java.math.BigInteger; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 解析厂信息工具类 |
||||||
|
* @author ninglong |
||||||
|
*/ |
||||||
|
public class ParseFacUtils { |
||||||
|
|
||||||
|
public static List<DataModel> parsePoint(InputStream inputStream) throws SAXException, DocumentException, JsonProcessingException { |
||||||
|
SAXReader saxReader = new SAXReader(); |
||||||
|
Document document = saxReader.read(inputStream); |
||||||
|
List groupElements = document.selectNodes("/Factorys/Factory/Group"); |
||||||
|
List<DataModel> list = parseDataGroup(groupElements); |
||||||
|
List ycElements = document.selectNodes("/Factorys/Factory/Group/AIS/AI"); |
||||||
|
list = pastePointElement(ycElements, DataConstants.DeviceDataType.YC.name(),list); |
||||||
|
|
||||||
|
List yxElements = document.selectNodes("/Factorys/Factory/Group/DIS/DI"); |
||||||
|
list = pastePointElement(yxElements, DataConstants.DeviceDataType.YX.name(),list); |
||||||
|
|
||||||
|
List ddElements = document.selectNodes("/Factorys/Factory/Group/DDS/DD"); |
||||||
|
list = pastePointElement(ddElements, DataConstants.DeviceDataType.DD.name(),list); |
||||||
|
|
||||||
|
List soeElements = document.selectNodes("/Factorys/Factory/Group/SOES/SOE"); |
||||||
|
list = pastePointElement(soeElements, DataConstants.DeviceDataType.SOE.name(),list); |
||||||
|
|
||||||
|
List ykElements = document.selectNodes("/Factorys/Factory/Group/DOS/DO"); |
||||||
|
list = pastePointElement(ykElements, DataConstants.DeviceDataType.YK.name(),list); |
||||||
|
return list; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 解析数据组 |
||||||
|
*/ |
||||||
|
private static List<DataModel> parseDataGroup(List elements){ |
||||||
|
List<DataModel> list = Lists.newArrayList(); |
||||||
|
for (Element element : (List<Element>) elements) { |
||||||
|
DataModel model = new DataModel(); |
||||||
|
model.setStructType(DataConstants.DataStructTypeEnum.dataGroup.name()); |
||||||
|
model.setId(element.attribute("ID").getValue()); |
||||||
|
model.setSignage(bigId2SmallId(element.attribute("ID").getValue())); |
||||||
|
model.setName(element.attribute("Name").getValue()); |
||||||
|
String stationNumStr = element.getParent().attribute("StationNum").getValue(); |
||||||
|
model.setStation(stationNumStr); |
||||||
|
list.add(model); |
||||||
|
} |
||||||
|
return list; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 将大id转换成小id |
||||||
|
*/ |
||||||
|
public static String bigId2SmallId(String realId){ |
||||||
|
BigInteger bigRealId = new BigInteger(realId); |
||||||
|
return bigRealId.and(new BigInteger(DataConstants.REALID_CALCULATE)).toString(); |
||||||
|
} |
||||||
|
/** |
||||||
|
* 解析数据点 |
||||||
|
*/ |
||||||
|
private static List<DataModel> pastePointElement(List elements, String type, List<DataModel> list) throws JsonProcessingException { |
||||||
|
for (Element element : (List<Element>) elements) { |
||||||
|
String groupId = element.getParent().getParent().attribute("ID").getValue(); |
||||||
|
for(DataModel dm:list){ |
||||||
|
if(!groupId.equals(dm.getId())){ |
||||||
|
continue; |
||||||
|
} |
||||||
|
DataItem dataItem = DataItem.builder() |
||||||
|
.id(element.attribute("ID").getValue()) |
||||||
|
.signage(bigId2SmallId(element.attribute("ID").getValue())) |
||||||
|
.name(element.attribute("Name").getValue()) |
||||||
|
.type(type) |
||||||
|
.build(); |
||||||
|
if(DataConstants.DeviceDataType.SOE.name().equals(type)){ |
||||||
|
dataItem.setEventType(element.attribute("SOEAlarmType").getValue()); |
||||||
|
dataItem.setSoeType(element.attribute("SOEType").getValue()); |
||||||
|
} |
||||||
|
if(DataConstants.DeviceDataType.YX.name().equals(type)){ |
||||||
|
dataItem.setEventType(element.attribute("YXAlarmType").getValue()); |
||||||
|
dataItem.setSoeType(element.attribute("SOEType").getValue()); |
||||||
|
} |
||||||
|
List<DataItem> childrens = dm.getChildren(); |
||||||
|
if(childrens==null){ |
||||||
|
childrens = Lists.newArrayList(); |
||||||
|
} |
||||||
|
childrens.add(dataItem); |
||||||
|
dm.setChildren(childrens); |
||||||
|
} |
||||||
|
} |
||||||
|
return list; |
||||||
|
} |
||||||
|
} |
||||||
|
|
@ -0,0 +1,52 @@ |
|||||||
|
package com.hnac.hzims.simulate.util; |
||||||
|
|
||||||
|
|
||||||
|
import java.math.BigInteger; |
||||||
|
|
||||||
|
public class RealIdConvertUtils { |
||||||
|
|
||||||
|
private void demo() { |
||||||
|
BigInteger ss = new BigInteger("16777215"); |
||||||
|
BigInteger s = new BigInteger("15122982502953650999"); |
||||||
|
BigInteger stationId = s.shiftRight(24); |
||||||
|
System.out.println(stationId.toString()); |
||||||
|
BigInteger realId = s.and(ss); |
||||||
|
System.out.println(realId.toString()); |
||||||
|
|
||||||
|
BigInteger xxx = stationId.shiftLeft(24); |
||||||
|
BigInteger yyy = xxx.or(realId); |
||||||
|
System.out.println(s.toString()); |
||||||
|
System.out.println(yyy.toString()); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 将大id转换成小id |
||||||
|
*/ |
||||||
|
public static String bigId2SmallId(String realId) { |
||||||
|
BigInteger bigRealId = new BigInteger(realId); |
||||||
|
return bigRealId.and(new BigInteger(DataConstants.REALID_CALCULATE)).toString(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 将小id转换成大id |
||||||
|
*/ |
||||||
|
public static String smallId2BigId(String station, String realId) { |
||||||
|
BigInteger stationId = new BigInteger(station); |
||||||
|
BigInteger BigRealId = stationId.shiftLeft(24).or(new BigInteger(realId)); |
||||||
|
return BigRealId.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
// public static void main(String[] args) {
|
||||||
|
// System.out.println(RealIdConvertUtils.getStationId("262952509021093892"));
|
||||||
|
// System.out.println(RealIdConvertUtils.bigId2SmallId("262952509021093892"));
|
||||||
|
// System.out.println(smallId2BigId("15673190893", "32"));
|
||||||
|
// }
|
||||||
|
|
||||||
|
/** |
||||||
|
* 获取站点id |
||||||
|
*/ |
||||||
|
public static String getStationId(String realId) { |
||||||
|
BigInteger bigRealId = new BigInteger(realId); |
||||||
|
return bigRealId.shiftRight(24).toString(); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
package com.hnac.hzims.simulate.util; |
||||||
|
|
||||||
|
public interface TopicConstant { |
||||||
|
String TOPIC_DEVICE_MODEL = "topic_device_model"; |
||||||
|
String TOPIC_HZINFO_PROPS = "topic_hzinfo_props"; |
||||||
|
String TOPIC_HZINFO_V4_YC = "hzinfo_v4_yc"; |
||||||
|
|
||||||
|
String TOPIC_HZINFO_V4_YX = "hzinfo_v4_yx"; |
||||||
|
|
||||||
|
String TOPIC_HZINFO_YX = "topic_hzinfo_yx"; |
||||||
|
String TOPIC_HZINFO_DD = "topic_hzinfo_dd"; |
||||||
|
String TOPIC_HZINFO_EVENTS = "topic_hzinfo_events"; |
||||||
|
String TOPIC_HZINFO_EVENTS_ALARM = "topic_hzinfo_events_alarm"; |
||||||
|
String TOPIC_HZINFO_CONTROL_RETURN = "topic_hzinfo_control_return"; |
||||||
|
String TOPIC_HZINFO_HEART_BEAT = "topic_hzinfo_heart_beat"; |
||||||
|
String TOPIC_HZINFO_BROADCAST = "topic_hzinfo_broadcast"; |
||||||
|
String TOPIC_HZINFO_DATA = "topic_hzinfo_data"; |
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
#服务器端口 |
||||||
|
server: |
||||||
|
port: 8211 |
||||||
|
|
||||||
|
#数据源配置 |
||||||
|
spring: |
||||||
|
datasource: |
||||||
|
url: ${blade.datasource.dev.url} |
||||||
|
username: ${blade.datasource.dev.username} |
||||||
|
password: ${blade.datasource.dev.password} |
||||||
|
cloud: |
||||||
|
inetutils: |
||||||
|
preferred-networks: 192.168.65 |
@ -0,0 +1,6 @@ |
|||||||
|
#数据源配置 |
||||||
|
spring: |
||||||
|
datasource: |
||||||
|
url: ${blade.datasource.prod.url} |
||||||
|
username: ${blade.datasource.prod.username} |
||||||
|
password: ${blade.datasource.prod.password} |
@ -0,0 +1,15 @@ |
|||||||
|
spring: |
||||||
|
application: |
||||||
|
name: lewa-simulate |
||||||
|
|
||||||
|
#mybatis-plus配置 |
||||||
|
mybatis-plus: |
||||||
|
mapper-locations: classpath:org/springbalde/**/mapper/*Mapper.xml,classpath:com/hnac/hzinfo/**/mapper/*Mapper.xml |
||||||
|
#实体扫描,多个package用逗号或者分号分隔 |
||||||
|
typeAliasesPackage: org.springbalde.**.entity,com.hnac.hzinfo.**.entity |
||||||
|
|
||||||
|
#swagger扫描路径配置 |
||||||
|
swagger: |
||||||
|
base-packages: |
||||||
|
- org.springbalde |
||||||
|
- com.hnac.hzinfo |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue