feat():添加剩余注释
parent
e1d45db36e
commit
492be37314
|
@ -7,7 +7,9 @@ import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* 企业通用信息
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @Author xie ya ru
|
* @Author xie ya ru
|
||||||
* @Date 2024/10/6 20:21
|
* @Date 2024/10/6 20:21
|
||||||
|
|
|
@ -10,6 +10,10 @@ import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*IoTDB工具类
|
||||||
|
*/
|
||||||
|
|
||||||
public class Iotdb {
|
public class Iotdb {
|
||||||
public static void main(String[] args) throws IoTDBConnectionException, StatementExecutionException {
|
public static void main(String[] args) throws IoTDBConnectionException, StatementExecutionException {
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,9 @@ package com.muyu.data.util;
|
||||||
|
|
||||||
import org.eclipse.paho.client.mqttv3.*;
|
import org.eclipse.paho.client.mqttv3.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 接受MQTT消息
|
||||||
|
*/
|
||||||
public class Receive {
|
public class Receive {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
|
@ -10,6 +10,7 @@ import javax.annotation.PostConstruct;
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* 事件预警
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @Author xie ya ru
|
* @Author xie ya ru
|
||||||
* @Date 2024/10/6 15:21
|
* @Date 2024/10/6 15:21
|
||||||
|
|
|
@ -12,10 +12,10 @@ import org.springframework.web.bind.annotation.*;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* vin查询报文模版类型
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @Author xie ya ru
|
* @Author xie ya ru
|
||||||
* @Date 2024/9/28 21:00
|
* @Date 2024/9/28 21:00
|
||||||
* @注释 vin查询报文模版类型
|
|
||||||
*/
|
*/
|
||||||
@FeignClient(contextId = "remoteMessageValueService", value = ServiceNameConstants.ENTERPRISE_SERVICE, fallbackFactory = RemoteMessageValueFallbackFactory.class,path = "messageValue")
|
@FeignClient(contextId = "remoteMessageValueService", value = ServiceNameConstants.ENTERPRISE_SERVICE, fallbackFactory = RemoteMessageValueFallbackFactory.class,path = "messageValue")
|
||||||
public interface RemoteMessageValueService {
|
public interface RemoteMessageValueService {
|
||||||
|
|
|
@ -10,10 +10,10 @@ import org.springframework.cloud.openfeign.FallbackFactory;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* 文件服务降级工厂
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @Author xie ya ru
|
* @Author xie ya ru
|
||||||
* @Date 2024/9/28 21:04
|
* @Date 2024/9/28 21:04
|
||||||
* @注释
|
|
||||||
*/
|
*/
|
||||||
@Log4j2
|
@Log4j2
|
||||||
public class RemoteMessageValueFallbackFactory implements FallbackFactory<RemoteMessageValueService> {
|
public class RemoteMessageValueFallbackFactory implements FallbackFactory<RemoteMessageValueService> {
|
||||||
|
|
Loading…
Reference in New Issue