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

eleme.openapi.sdk.api.entity.alliance.ChannelLevel3BatchResponse Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.entity.alliance;

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

public class ChannelLevel3BatchResponse{

    /**
     * 是否成功
     */
    private boolean success;
    public boolean getSuccess() {
        return success;
    }
    public void setSuccess(boolean success) {
        this.success = success;
    }
    
    /**
     * 错误码
     */
    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 result;
    public List getResult() {
        return result;
    }
    public void setResult(List result) {
        this.result = result;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy