接口调整

This commit is contained in:
2023-06-27 20:23:07 +08:00
parent 022bf29a39
commit d07718437a
9 changed files with 74 additions and 29 deletions

View File

@@ -0,0 +1,31 @@
package com.njcn.csharmonic.enums;
import lombok.Getter;
/**
* pqs
* Advacne枚举
* @author cdf
* @date 2021/6/21
*/
@Getter
public enum CsHarmonicResponseEnum {
/**
* A00600 ~ A00700 用于稳态模块的枚举
*/
CS_DEVICE_COMMON_ERROR("A00600","治理稳态模块异常"),
BIND_TARGET_ERROR("A00601","指标参数绑定异常"),
;
private final String code;
private final String message;
CsHarmonicResponseEnum(String code, String message) {
this.code = code;
this.message = message;
}
}

View File

@@ -55,7 +55,7 @@ public class ZuTaiDTO {
private Double angle;
@SerializedName("lineId")
private String lineId;
private List<String> lineId;
@SerializedName("UID")
private List<String> uId;