接口调整
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user