MesSyncResponse.java
481 Bytes
package com.iot.scheduler.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
* MES同步响应报文
*/
@Data
public class MesSyncResponse {
@JsonProperty("isSuccess")
private Boolean isSuccess;
private Integer Code;
private String uri;
private String Message;
private String Exception;
private String ExceptionMessage;
private String StackTrace;
@JsonProperty("Content")
private Object Content;
}