package com.zy.asrs.entity.mes; import com.alibaba.fastjson.annotation.JSONField; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; // MES接口返回结果 @Data public class MesReturn { // 1:成功;2:失败 @JsonProperty("Success") @JSONField(name = "Success") private String Success; // 失败消息 @JsonProperty("Message") @JSONField(name = "Message") private String Message; }