Browse Source
# Conflicts: # hzims-service-api/big-model-api/src/main/java/com/hnac/hzims/bigmodel/api/feign/IVideoSyncClient.java # hzims-service-api/hzims-operational-api/src/main/java/com/hnac/hzims/operational/station/feign/IStationClient.java # hzims-service-api/hzims-operational-api/src/main/java/com/hnac/hzims/operational/station/feign/IStationVideoTypeClient.java # hzims-service-api/middle-api/src/main/java/com/hnac/hzims/middle/process/constant/TicketProcessConstant.java # hzims-service-api/pom.xml # hzims-service/hzims-alarm/pom.xml # hzims-service/hzims-alarm/src/main/java/com/hnac/hzims/alarm/monitor/service/impl/AlarmSaveServiceImpl.java # hzims-service/hzims-alarm/src/main/java/com/hnac/hzims/alarm/show/controller/ShowAlarmController.java # hzims-service/hzims-alarm/src/main/java/com/hnac/hzims/alarm/show/service/AlarmService.java # hzims-service/hzims-alarm/src/main/java/com/hnac/hzims/alarm/show/service/impl/AlarmServiceImpl.java # hzims-service/hzims-big-model/src/main/java/com/hnac/hzims/bigmodel/HzimsBigModelApplication.java # hzims-service/hzims-big-model/src/main/java/com/hnac/hzims/bigmodel/business/service/HistoryDataService.java # hzims-service/hzims-big-model/src/main/java/com/hnac/hzims/bigmodel/interactive/factory/AnswerResolveFactory.java # hzims-service/hzims-big-model/src/main/java/com/hnac/hzims/bigmodel/interactive/factory/ResolveFactory.java # hzims-service/hzims-big-model/src/main/java/com/hnac/hzims/bigmodel/interactive/service/impl/CanvasResolveServiceImpl.java # hzims-service/hzims-big-model/src/main/java/com/hnac/hzims/bigmodel/interactive/service/impl/HznlmInvokeServiceImpl.java # hzims-service/hzims-big-model/src/main/java/com/hnac/hzims/bigmodel/interactive/service/impl/VideoResolveServiceImpl.java # hzims-service/hzims-big-model/src/main/java/com/hnac/hzims/bigmodel/maintenance/entity/DatasourceEntity.java # hzims-service/hzims-big-model/src/main/java/com/hnac/hzims/bigmodel/schedule/FrontEndInteractiveSchedule.java # hzims-service/hzims-big-model/src/main/java/com/hnac/hzims/bigmodel/utils/RequestClientUtil.java # hzims-service/hzims-big-model/src/main/resources/db/2.0.0.sql # hzims-service/hzims-scheduled/src/main/java/com/hnac/hzims/scheduled/service/operation/home/impl/RealTargetServiceImpl.java # hzims-service/inspect/src/main/java/com/hnac/hzinfo/inspect/ai/service/impl/RobotServiceImpl.java # hzims-service/message/pom.xml # hzims-service/message/src/main/java/com/hnac/hzims/message/fegin/MessageClient.java # hzims-service/message/src/main/java/com/hnac/hzims/message/service/IMessageService.java # hzims-service/message/src/main/java/com/hnac/hzims/message/service/impl/MailMessageServiceImpl.java # hzims-service/message/src/main/java/com/hnac/hzims/message/service/impl/SmsMessageServiceImpl.java # hzims-service/message/src/main/java/com/hnac/hzims/message/web/MsgWsRecordHistoryController.java # hzims-service/operational/src/main/java/com/hnac/hzims/operational/report/service/impl/DeptServiceImpl.java # hzims-service/operational/src/main/java/com/hnac/hzims/operational/station/feign/StationVideoTypeClient.java # hzims-service/operational/src/main/java/com/hnac/hzims/operational/station/service/IStationVideoTypeService.java # hzims-service/operational/src/main/java/com/hnac/hzims/operational/station/service/impl/RealMonitorServiceImpl.java # hzims-service/operational/src/main/java/com/hnac/hzims/operational/station/service/impl/StationVideoTypeServiceImpl.java # hzims-service/operational/src/main/resources/db/2.0.5.sql # hzims-service/pom.xml # hzims-service/safeproduct/src/main/java/com/hnac/hzims/safeproduct/mapper/CarCheckTemplateMapper.java # hzims-service/ticket/src/main/java/com/hnac/hzims/ticket/standardTicket/controller/OperationTicketController.java # hzims-service/ticket/src/main/java/com/hnac/hzims/ticket/standardTicket/service/OperationTicketService.java # hzims-service/ticket/src/main/java/com/hnac/hzims/ticket/standardTicket/service/impl/OperationTicketServiceImpl.java # pom.xmlzhongwei
yang_shj
5 months ago
91 changed files with 3251 additions and 22 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; |
||||||
|
} |
@ -0,0 +1,24 @@ |
|||||||
|
package com.hnac.hzims.operational.report.vo; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ApiModel("发电量报表") |
||||||
|
public class GenerationDeviceVo { |
||||||
|
|
||||||
|
@ApiModelProperty("设备编号") |
||||||
|
private String deviceCode; |
||||||
|
|
||||||
|
@ApiModelProperty("设备名称") |
||||||
|
private String deviceName; |
||||||
|
|
||||||
|
@ApiModelProperty("属性时间范围统计数据") |
||||||
|
private List<GenerationReportVo> attributes; |
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
package com.hnac.hzims.operational.report.vo; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ApiModel("发电量报表") |
||||||
|
public class GenerationReportTimeVo { |
||||||
|
|
||||||
|
@ApiModelProperty("时间") |
||||||
|
private String time; |
||||||
|
|
||||||
|
@ApiModelProperty("值") |
||||||
|
private Double value; |
||||||
|
} |
@ -0,0 +1,24 @@ |
|||||||
|
package com.hnac.hzims.operational.report.vo; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ApiModel("发电量报表") |
||||||
|
public class GenerationReportVo { |
||||||
|
|
||||||
|
@ApiModelProperty("属性") |
||||||
|
private String attribute; |
||||||
|
|
||||||
|
@ApiModelProperty("属性名称") |
||||||
|
private String attributeName; |
||||||
|
|
||||||
|
@ApiModelProperty("属性时间范围统计数据") |
||||||
|
private List<GenerationReportTimeVo> times; |
||||||
|
} |
@ -0,0 +1,130 @@ |
|||||||
|
package com.hnac.hzims.operational.station.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableField; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
import lombok.experimental.Accessors; |
||||||
|
import okhttp3.internal.annotations.EverythingIsNonNull; |
||||||
|
|
||||||
|
import javax.validation.constraints.NotNull; |
||||||
|
import java.io.Serializable; |
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.time.LocalDateTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 站点和霍山生态流量电站的关联关系表 |
||||||
|
* @author tanghaihao |
||||||
|
* @date 2023年10月08日 13:58 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = false) |
||||||
|
@Accessors(chain = true) |
||||||
|
@TableName("station_relation") |
||||||
|
public class StationRelation implements Serializable { |
||||||
|
private static final long serialVersionUID=1L; |
||||||
|
|
||||||
|
/** |
||||||
|
* ID |
||||||
|
*/ |
||||||
|
@TableId(value = "id", type = IdType.AUTO) |
||||||
|
private Long id; |
||||||
|
|
||||||
|
/** |
||||||
|
* 站点编码 |
||||||
|
*/ |
||||||
|
@TableField("station_code") |
||||||
|
private String stationCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 站点名称 |
||||||
|
*/ |
||||||
|
@TableField(exist = false) |
||||||
|
private String stationName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 设备编码 |
||||||
|
*/ |
||||||
|
@TableField("device_code") |
||||||
|
private String deviceCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 设备名称 |
||||||
|
*/ |
||||||
|
@TableField(exist = false) |
||||||
|
private String deviceName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 核定流量 |
||||||
|
*/ |
||||||
|
@TableField("flow_value") |
||||||
|
private String flowValue; |
||||||
|
|
||||||
|
/** |
||||||
|
* 低级告警负责人id |
||||||
|
*/ |
||||||
|
@TableField("low_soe_user_id") |
||||||
|
private String lowSoeUserId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 低级告警电话号码 |
||||||
|
*/ |
||||||
|
@TableField("low_soe_phone") |
||||||
|
private String lowSoePhone; |
||||||
|
|
||||||
|
/** |
||||||
|
* 中级告警负责人id |
||||||
|
*/ |
||||||
|
@TableField("middle_soe_user_id") |
||||||
|
private String middleSoeUserId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 中级告警电话号码 |
||||||
|
*/ |
||||||
|
@TableField("middle_soe_phone") |
||||||
|
private String middleSoePhone; |
||||||
|
|
||||||
|
/** |
||||||
|
* 高级告警负责人id |
||||||
|
*/ |
||||||
|
@TableField("high_soe_user_id") |
||||||
|
private String highSoeUserId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 高级告警电话号码 |
||||||
|
*/ |
||||||
|
@TableField("high_soe_phone") |
||||||
|
private String highSoePhone; |
||||||
|
|
||||||
|
/** |
||||||
|
* 当日是否发送预警 |
||||||
|
*/ |
||||||
|
@TableField("send_warning") |
||||||
|
private Integer sendWarning; |
||||||
|
|
||||||
|
/** |
||||||
|
* 当日是否发送告警 |
||||||
|
*/ |
||||||
|
@TableField("send_soe") |
||||||
|
private Integer sendSoe; |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
@TableField("create_time") |
||||||
|
private LocalDateTime createTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新时间 |
||||||
|
*/ |
||||||
|
@TableField("update_time") |
||||||
|
private LocalDateTime updateTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 逻辑删除 |
||||||
|
*/ |
||||||
|
@TableField("is_deleted") |
||||||
|
private Integer isDeleted; |
||||||
|
} |
@ -0,0 +1,31 @@ |
|||||||
|
package com.hnac.hzinfo.inspect.ai.vo; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import javax.validation.constraints.NotBlank; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
@Data |
||||||
|
public class RemoteControlDTO { |
||||||
|
|
||||||
|
@ApiModelProperty("站点编号") |
||||||
|
@NotBlank |
||||||
|
private String stationCode; |
||||||
|
|
||||||
|
@ApiModelProperty("设备编码") |
||||||
|
@NotBlank |
||||||
|
private String deviceCode; |
||||||
|
|
||||||
|
@ApiModelProperty("功能标识") |
||||||
|
@NotBlank |
||||||
|
private String signage; |
||||||
|
|
||||||
|
@ApiModelProperty("参数列表") |
||||||
|
@NotBlank |
||||||
|
private Map<String, Object> params; |
||||||
|
|
||||||
|
@ApiModelProperty("机器码") |
||||||
|
@NotBlank |
||||||
|
private String machineCode; |
||||||
|
} |
@ -0,0 +1,72 @@ |
|||||||
|
package com.hnac.hzims.middle.processflow.strategy.serviceimpl; |
||||||
|
|
||||||
|
import com.hnac.hzims.middle.process.to.ProcessWorkFlowResponse; |
||||||
|
import com.hnac.hzims.middle.processflow.service.ProcessDictService; |
||||||
|
import com.hnac.hzims.middle.processflow.strategy.abstracts.ProcessAbstractService; |
||||||
|
import com.hnac.hzims.middle.processflow.strategy.entity.WorkflowQueue; |
||||||
|
import com.hnac.hzims.ticket.ticketprocess.feign.OperationTicketFeignClient; |
||||||
|
import lombok.RequiredArgsConstructor; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springblade.core.log.exception.ServiceException; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import static com.hnac.hzims.middle.process.constant.TicketProcessConstant.OFFLINE_OPERATION_TICKET; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 操作票流程实现类 |
||||||
|
* |
||||||
|
* @Author dfy |
||||||
|
* @Version v1.0 |
||||||
|
* @Serial 1.0 |
||||||
|
* @Date 2023/3/28 8:47 |
||||||
|
*/ |
||||||
|
@Slf4j |
||||||
|
@Service |
||||||
|
@RequiredArgsConstructor |
||||||
|
public class OfflineOperationTicketProcessServiceImpl extends ProcessAbstractService { |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private final OperationTicketFeignClient operationTicketFeignClient; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private final ProcessDictService processDictService; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 设置执行那种实现类 |
||||||
|
* |
||||||
|
* @param flowQueue |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public Boolean isWorkflowProcess(WorkflowQueue flowQueue) { |
||||||
|
log.info("是否执行操作票流程环节操作~~~~,流程flowQueue: {}", flowQueue); |
||||||
|
String dictValue = processDictService.selectDictValueByKey(OFFLINE_OPERATION_TICKET); |
||||||
|
if (dictValue.equals(flowQueue.getProcessDefinitionKey())) { |
||||||
|
log.info("已执行操作票流程环节操作~~~~"); |
||||||
|
return true; |
||||||
|
} |
||||||
|
log.error("未执行操作票流程环节操作,请联系管理员~~~~"); |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 两票管理业务方法 |
||||||
|
* |
||||||
|
* @param response |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public void calculate(ProcessWorkFlowResponse response) { |
||||||
|
log.info("操作票流程消费调用fein接口开始---param",response); |
||||||
|
Boolean pending = operationTicketFeignClient.findPending(response); |
||||||
|
if (!pending) { |
||||||
|
log.info("操作票流程调用fein接口异常---param",response); |
||||||
|
throw new ServiceException("操作票流程出现异常呢"); |
||||||
|
} |
||||||
|
log.info("操作票流程消费调用fein接口结束---param",response); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1 @@ |
|||||||
|
INSERT INTO `process_dict`(`dict_code`, `dict_sort`, `dict_key`, `dict_value`, `dict_label`, `dict_type`, `is_default`, `status`, `create_dept`, `create_time`, `update_time`, `remark`) VALUES (15, 15, 'OperationTicketOffline', 'OperationTicketOffline', '线下操作票', '线下操作票', 'Y', 0, NULL, '2023-07-25 18:35:01', '2024-05-24 11:22:14', '线下操作票流程'); |
@ -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,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,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,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 |
@ -0,0 +1,34 @@ |
|||||||
|
package com.hnac.hzims.operational.report.controller; |
||||||
|
|
||||||
|
import com.hnac.hzims.operational.report.service.IGenerationReportService; |
||||||
|
import com.hnac.hzims.operational.report.vo.GenerationDeviceVo; |
||||||
|
import com.hnac.hzims.operational.report.vo.GenerationReportTimeVo; |
||||||
|
import com.hnac.hzims.operational.report.vo.GenerationReportVo; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springblade.core.boot.ctrl.BladeController; |
||||||
|
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; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
@Slf4j |
||||||
|
@AllArgsConstructor |
||||||
|
@RestController |
||||||
|
@RequestMapping("/generation/report") |
||||||
|
public class GenerationReportController extends BladeController { |
||||||
|
|
||||||
|
private final IGenerationReportService service; |
||||||
|
|
||||||
|
@GetMapping("/sameDayReport") |
||||||
|
public R<List<GenerationDeviceVo>> sameDayReport(@RequestParam("stationId") String stationId){ |
||||||
|
return R.data(service.sameDayReport(stationId)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,14 @@ |
|||||||
|
package com.hnac.hzims.operational.report.service; |
||||||
|
|
||||||
|
import com.hnac.hzims.operational.report.vo.GenerationDeviceVo; |
||||||
|
import com.hnac.hzims.operational.report.vo.GenerationReportVo; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
public interface IGenerationReportService { |
||||||
|
|
||||||
|
List<GenerationDeviceVo> sameDayReport(String stationId); |
||||||
|
} |
@ -0,0 +1,100 @@ |
|||||||
|
package com.hnac.hzims.operational.report.service.impl; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||||
|
import com.hnac.hzims.equipment.entity.EmInfoEntity; |
||||||
|
import com.hnac.hzims.equipment.feign.IEmInfoClient; |
||||||
|
import com.hnac.hzims.operational.report.service.IGenerationReportService; |
||||||
|
import com.hnac.hzims.operational.report.vo.GenerationDeviceVo; |
||||||
|
import com.hnac.hzims.operational.report.vo.GenerationReportTimeVo; |
||||||
|
import com.hnac.hzims.operational.report.vo.GenerationReportVo; |
||||||
|
import com.hnac.hzims.operational.station.entity.StationEntity; |
||||||
|
import com.hnac.hzims.operational.station.service.IStationService; |
||||||
|
import lombok.RequiredArgsConstructor; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springblade.core.log.exception.ServiceException; |
||||||
|
import org.springblade.core.tool.utils.CollectionUtil; |
||||||
|
import org.springblade.core.tool.utils.ObjectUtil; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
import java.util.stream.Collectors; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@Slf4j |
||||||
|
@RequiredArgsConstructor |
||||||
|
public class GenerationReportServiceImpl implements IGenerationReportService { |
||||||
|
|
||||||
|
private final IStationService stationService; |
||||||
|
|
||||||
|
private final IEmInfoClient deviceClient; |
||||||
|
|
||||||
|
/** |
||||||
|
* 当天报表 |
||||||
|
* @param stationId |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public List<GenerationDeviceVo> sameDayReport(String stationId) { |
||||||
|
// 查询站点
|
||||||
|
StationEntity station = stationService.getOne(Wrappers.<StationEntity>lambdaQuery().eq(StationEntity::getCode,stationId)); |
||||||
|
if(ObjectUtil.isEmpty(station)){ |
||||||
|
throw new ServiceException("未查询到站点信息!"); |
||||||
|
} |
||||||
|
// 查询站点机组设备
|
||||||
|
List<EmInfoEntity> devices = deviceClient.crewsDevices(station.getRefDept()); |
||||||
|
if(CollectionUtil.isEmpty(devices)){ |
||||||
|
throw new ServiceException("未查询到站点机组类型设备!"); |
||||||
|
} |
||||||
|
// FIXME 属性标识
|
||||||
|
Map<String,String> signages = new HashMap<>(); |
||||||
|
signages.put("active_power","有功功率"); |
||||||
|
signages.put("reactive_power","无功功率"); |
||||||
|
signages.put("generation_capacity","正向有功电量"); |
||||||
|
signages.put("reactive_generation_capacity","正向无功电量"); |
||||||
|
List<String> times = this.sameDayValues(); |
||||||
|
Random random = new Random(); |
||||||
|
return devices.stream().map(device->{ |
||||||
|
GenerationDeviceVo item = new GenerationDeviceVo(); |
||||||
|
item.setDeviceCode(device.getNumber()); |
||||||
|
item.setDeviceName(device.getName()); |
||||||
|
item.setAttributes(signages.entrySet().stream().map(entry->{ |
||||||
|
GenerationReportVo attribute = new GenerationReportVo(); |
||||||
|
attribute.setAttribute(entry.getKey()); |
||||||
|
attribute.setAttributeName(entry.getValue()); |
||||||
|
// FIXME : 使用随机数
|
||||||
|
attribute.setTimes(times.stream().map(time->{ |
||||||
|
GenerationReportTimeVo generation = new GenerationReportTimeVo(); |
||||||
|
generation.setTime(time); |
||||||
|
generation.setValue(random.nextDouble() * 1000); |
||||||
|
return generation; |
||||||
|
}).collect(Collectors.toList())); |
||||||
|
return attribute; |
||||||
|
}).collect(Collectors.toList())); |
||||||
|
return item; |
||||||
|
}).collect(Collectors.toList()); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 当天数据值 |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
private List<String> sameDayValues() { |
||||||
|
Calendar calendar = Calendar.getInstance(); |
||||||
|
Date end = calendar.getTime(); |
||||||
|
calendar.add(Calendar.HOUR_OF_DAY,-calendar.get(Calendar.HOUR_OF_DAY)); |
||||||
|
calendar.add(Calendar.MINUTE, -calendar.get(Calendar.MINUTE)); |
||||||
|
calendar.add(Calendar.SECOND, -calendar.get(Calendar.SECOND)); |
||||||
|
calendar.add(Calendar.MILLISECOND,-calendar.get(Calendar.MILLISECOND)); |
||||||
|
Date start = calendar.getTime(); |
||||||
|
List<String> times = new ArrayList<>(); |
||||||
|
while (start.compareTo(end) <= 0){ |
||||||
|
calendar.add(Calendar.HOUR_OF_DAY,1); |
||||||
|
times.add(start.getHours() + "时"); |
||||||
|
start = calendar.getTime(); |
||||||
|
} |
||||||
|
return times; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,134 @@ |
|||||||
|
package com.hnac.hzims.operational.station.controller; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
||||||
|
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.hnac.hzims.operational.station.RunReportConstant; |
||||||
|
import com.hnac.hzims.operational.station.entity.StationRelation; |
||||||
|
import com.hnac.hzims.operational.station.service.IStationRelationService; |
||||||
|
import com.hnac.hzinfo.sdk.v5.device.client.DeviceClient; |
||||||
|
import com.hnac.hzinfo.sdk.v5.device.vo.DeviceInstanceVO; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import io.swagger.annotations.ApiOperationSupport; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
import javax.validation.Valid; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author tanghaihao |
||||||
|
* @date 2023年10月08日 15:04 |
||||||
|
*/ |
||||||
|
|
||||||
|
@RestController |
||||||
|
@RequestMapping("/station/station-relation") |
||||||
|
@AllArgsConstructor |
||||||
|
@Api(value = "站点和霍山生态流量电站的关联关系管理",tags = "站点和霍山生态流量电站的关联关系管理") |
||||||
|
public class StationRelationController { |
||||||
|
private final IStationRelationService stationRelationService; |
||||||
|
private final DeviceClient deviceClient; |
||||||
|
|
||||||
|
@GetMapping("/list") |
||||||
|
@ApiOperation("查询列表") |
||||||
|
@ApiOperationSupport(order = 1) |
||||||
|
public R<List<StationRelation>> list(StationRelation stationRelation) { |
||||||
|
|
||||||
|
return R.data(stationRelationService.getStationRelationList(stationRelation)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/page") |
||||||
|
@ApiOperation("分页查询列表") |
||||||
|
@ApiOperationSupport(order = 2) |
||||||
|
public R<IPage<StationRelation>> page(StationRelation stationRelation, Query query) { |
||||||
|
|
||||||
|
return R.data(stationRelationService.getStationRelationPageList(stationRelation, query)); |
||||||
|
} |
||||||
|
|
||||||
|
@PostMapping("/save") |
||||||
|
@ApiOperation("保存") |
||||||
|
@ApiOperationSupport(order = 3) |
||||||
|
public R save(@RequestBody @Valid StationRelation stationRelation) { |
||||||
|
if (Func.isEmpty(stationRelation.getStationCode())) { |
||||||
|
return R.fail("站点编码不能为空"); |
||||||
|
} |
||||||
|
if (Func.isEmpty(stationRelation.getDeviceCode())) { |
||||||
|
return R.fail("设备编码不能为空"); |
||||||
|
} |
||||||
|
if (Func.isEmpty(stationRelation.getLowSoeUserId())) { |
||||||
|
return R.fail("低级告警负责人不能为空"); |
||||||
|
} |
||||||
|
if (Func.isEmpty(stationRelation.getLowSoePhone())) { |
||||||
|
return R.fail("低级告警电话号码不能为空"); |
||||||
|
} |
||||||
|
if (Func.isEmpty(stationRelation.getMiddleSoeUserId())) { |
||||||
|
return R.fail("中级告警负责人不能为空"); |
||||||
|
} |
||||||
|
if (Func.isEmpty(stationRelation.getMiddleSoePhone())) { |
||||||
|
return R.fail("中级告警电话号码不能为空"); |
||||||
|
} |
||||||
|
if (Func.isEmpty(stationRelation.getHighSoeUserId())) { |
||||||
|
return R.fail("高级告警负责人不能为空"); |
||||||
|
} |
||||||
|
if (Func.isEmpty(stationRelation.getHighSoePhone())) { |
||||||
|
return R.fail("高级告警电话号码不能为空"); |
||||||
|
} |
||||||
|
if (Func.isEmpty(stationRelation.getFlowValue())) { |
||||||
|
return R.fail("核定流量不能为空"); |
||||||
|
} |
||||||
|
LambdaQueryWrapper<StationRelation> wrapper = new LambdaQueryWrapper(); |
||||||
|
wrapper.and(item -> item.eq(StationRelation::getStationCode, stationRelation.getStationCode()) |
||||||
|
.or().eq(StationRelation::getDeviceCode, stationRelation.getDeviceCode())); |
||||||
|
wrapper.eq(StationRelation::getIsDeleted, 0); |
||||||
|
int count = stationRelationService.count(wrapper); |
||||||
|
if (count > 0) { |
||||||
|
return R.fail("站点关联关系已存在"); |
||||||
|
} |
||||||
|
return R.status(stationRelationService.save(stationRelation)); |
||||||
|
} |
||||||
|
|
||||||
|
@PostMapping("/update") |
||||||
|
@ApiOperation("编辑") |
||||||
|
@ApiOperationSupport(order = 4) |
||||||
|
public R update(@RequestBody @Valid StationRelation stationRelation) { |
||||||
|
LambdaQueryWrapper<StationRelation> wrapper = new LambdaQueryWrapper(); |
||||||
|
wrapper.and(item -> item.eq(StationRelation::getStationCode, stationRelation.getStationCode()) |
||||||
|
.or().eq(StationRelation::getDeviceCode, stationRelation.getDeviceCode())); |
||||||
|
wrapper.eq(StationRelation::getIsDeleted, 0); |
||||||
|
wrapper.ne(StationRelation::getId, stationRelation.getId()); |
||||||
|
int count = stationRelationService.count(wrapper); |
||||||
|
if (count > 0) { |
||||||
|
return R.fail("站点关联关系已存在"); |
||||||
|
} |
||||||
|
return R.status(stationRelationService.updateById(stationRelation)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/remove") |
||||||
|
@ApiOperation("删除") |
||||||
|
@ApiOperationSupport(order = 5) |
||||||
|
public R remove(Long id) { |
||||||
|
LambdaUpdateWrapper<StationRelation> wrapper = new LambdaUpdateWrapper<>(); |
||||||
|
wrapper.set(StationRelation::getIsDeleted, 1); |
||||||
|
wrapper.eq(StationRelation::getId, id); |
||||||
|
stationRelationService.update(wrapper); |
||||||
|
return R.success("操作成功"); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/getDevice") |
||||||
|
@ApiOperation("获取生态流量模型的设备信息") |
||||||
|
@ApiOperationSupport(order = 6) |
||||||
|
public R<List<DeviceInstanceVO>> getDevice() { |
||||||
|
R<List<DeviceInstanceVO>> rData = deviceClient.getDeviceByModelSignage(RunReportConstant.HS_MODEL_SIGNAGE); |
||||||
|
if (rData.getCode() == 200) { |
||||||
|
List<DeviceInstanceVO> data = rData.getData(); |
||||||
|
return R.data(data); |
||||||
|
} else { |
||||||
|
return R.fail("获取设备信息失败"); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,8 @@ |
|||||||
|
package com.hnac.hzims.operational.station.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.hnac.hzims.operational.station.entity.StationRelation; |
||||||
|
|
||||||
|
public interface StationRelationMapper extends BaseMapper<StationRelation> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,5 @@ |
|||||||
|
<?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.operational.station.mapper.StationRelationMapper"> |
||||||
|
|
||||||
|
</mapper> |
@ -0,0 +1,19 @@ |
|||||||
|
package com.hnac.hzims.operational.station.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.baomidou.mybatisplus.extension.service.IService; |
||||||
|
import com.hnac.hzims.operational.station.entity.StationRelation; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author tanghaihao |
||||||
|
* @date 2023年10月08日 15:04 |
||||||
|
*/ |
||||||
|
public interface IStationRelationService extends IService<StationRelation> { |
||||||
|
|
||||||
|
List<StationRelation> getStationRelationList(StationRelation stationRelation); |
||||||
|
|
||||||
|
IPage<StationRelation> getStationRelationPageList(StationRelation stationRelation, Query query); |
||||||
|
} |
@ -0,0 +1,47 @@ |
|||||||
|
package com.hnac.hzims.operational.station.service.impl; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
|
import com.hnac.hzims.operational.station.entity.StationRelation; |
||||||
|
import com.hnac.hzims.operational.station.mapper.StationRelationMapper; |
||||||
|
import com.hnac.hzims.operational.station.service.IStationRelationService; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author tanghaihao |
||||||
|
* @date 2023年10月08日 14:37 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
public class StationRelationServiceImpl extends ServiceImpl<StationRelationMapper, StationRelation> implements IStationRelationService { |
||||||
|
@Override |
||||||
|
public List<StationRelation> getStationRelationList(StationRelation stationRelation) { |
||||||
|
LambdaQueryWrapper<StationRelation> wrapper = new LambdaQueryWrapper(); |
||||||
|
if (Func.isNotEmpty(stationRelation.getStationCode())) { |
||||||
|
wrapper.eq(StationRelation::getStationCode, stationRelation.getStationCode()); |
||||||
|
} |
||||||
|
if (Func.isNotEmpty(stationRelation.getDeviceCode())) { |
||||||
|
wrapper.eq(StationRelation::getDeviceCode, stationRelation.getDeviceCode()); |
||||||
|
} |
||||||
|
wrapper.eq(StationRelation::getIsDeleted, 0); |
||||||
|
return this.list(wrapper); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public IPage<StationRelation> getStationRelationPageList(StationRelation stationRelation, Query query) { |
||||||
|
LambdaQueryWrapper<StationRelation> wrapper = new LambdaQueryWrapper(); |
||||||
|
if (Func.isNotEmpty(stationRelation.getStationCode())) { |
||||||
|
wrapper.eq(StationRelation::getStationCode, stationRelation.getStationCode()); |
||||||
|
} |
||||||
|
if (Func.isNotEmpty(stationRelation.getDeviceCode())) { |
||||||
|
wrapper.eq(StationRelation::getDeviceCode, stationRelation.getDeviceCode()); |
||||||
|
} |
||||||
|
wrapper.eq(StationRelation::getIsDeleted, 0); |
||||||
|
return this.page(Condition.getPage(query), wrapper); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,37 @@ |
|||||||
|
<html> |
||||||
|
<head> |
||||||
|
<style> |
||||||
|
table { |
||||||
|
border-collapse: collapse; |
||||||
|
border: 2px solid #333; |
||||||
|
} |
||||||
|
|
||||||
|
table td { |
||||||
|
border-collapse: collapse; |
||||||
|
border: 1px solid #333; |
||||||
|
padding: 5px; |
||||||
|
font-size: 14px; |
||||||
|
font-weight: bold; |
||||||
|
text-align: center; |
||||||
|
font-family: SimSun; |
||||||
|
} |
||||||
|
</style> |
||||||
|
</head> |
||||||
|
<body> |
||||||
|
<table> |
||||||
|
<tr> |
||||||
|
<td width="100">工器具名称</td> |
||||||
|
<td width="200">${data_1}</td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<td>创建日期</td> |
||||||
|
<td>${data_2}</td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<td colspan="2" style="text-align: center"> |
||||||
|
<img src="${data_3}" width="250"/> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
</table> |
||||||
|
</body> |
||||||
|
</html> |
@ -0,0 +1,6 @@ |
|||||||
|
alter table `hzims_standard_ticket_info` add column `is_offline` tinyint(2) default 0 comment '是否线下 : 1-线下,0-线上'; |
||||||
|
alter table `hzims_standard_ticket_info` add column `is_approved` tinyint(2) default NULL comment '是否审核通过 : 1-通过,0-未通过'; |
||||||
|
alter table `hzims_standard_ticket_info` ADD COLUMN `picture` varchar(600) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图片附件' ; |
||||||
|
ALTER TABLE `hzims_standard_ticket_info` |
||||||
|
MODIFY COLUMN `issue_order_person` bigint(20) NULL COMMENT '发令人' AFTER `code`, |
||||||
|
MODIFY COLUMN `access_order_person` bigint(20) NULL COMMENT '受令人' AFTER `issue_order_person`; |
Loading…
Reference in new issue