All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.api.entity.shop.BizResponse Maven / Gradle / Ivy

The newest version!
package eleme.openapi.sdk.api.entity.shop;

import eleme.openapi.sdk.api.enumeration.shop.*;
import eleme.openapi.sdk.api.entity.shop.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;

public class BizResponse{

    /**
     * 是否成功
     */
    private boolean success;
    public boolean getSuccess() {
        return success;
    }
    public void setSuccess(boolean success) {
        this.success = success;
    }
    
    /**
     * 是否重试
     */
    private boolean retry;
    public boolean getRetry() {
        return retry;
    }
    public void setRetry(boolean retry) {
        this.retry = retry;
    }
    
    /**
     * 错误码
     */
    private String errorCode;
    public String getErrorCode() {
        return errorCode;
    }
    public void setErrorCode(String errorCode) {
        this.errorCode = errorCode;
    }
    
    /**
     * 错误信息
     */
    private String errorMsg;
    public String getErrorMsg() {
        return errorMsg;
    }
    public void setErrorMsg(String errorMsg) {
        this.errorMsg = errorMsg;
    }
    
    /**
     * 单项结果同步情况
     */
    private List module;
    public List getModule() {
        return module;
    }
    public void setModule(List module) {
        this.module = module;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy