WcsResult.java 779 Bytes
package com.huaheng.control.management.vo;

import java.io.Serializable;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.huaheng.control.management.utils.constant.CommonConstant;

import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;

/**
 * WCS接口返回对象
 */
@Data
@Schema(title = "WcsResult", description = "WCS接口返回对象")
public class WcsResult<T> implements Serializable {

    private static final long serialVersionUID = 1L;

    @Schema(description = "错误信息")
    private String errorCode;

    @Schema(description = "返回状态", example = "Success")
    private String code;

    @Schema(description = "返回消息")
    private String message;

    @Schema(description = "返回对象")
    private T data;
}