接口调整

This commit is contained in:
2023-09-18 15:13:06 +08:00
parent 16107d3e7b
commit e0ac80822a
13 changed files with 70 additions and 19 deletions

View File

@@ -17,4 +17,6 @@ import org.springframework.cloud.openfeign.FeignClient;
fallbackFactory = CommTerminalGeneralClientFallbackFactory.class)
public interface CommLineClient {
}

View File

@@ -0,0 +1,21 @@
package com.njcn.device.biz.pojo.dto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* pqs
*
* @author cdf
* @date 2023/9/18
*/
@Data
public class CommLineDetailDTO {
@ApiModelProperty(value = "监测点id")
private String monitorId;
@ApiModelProperty(value = "监测点数据统计间隔")
private Integer interval;
}