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

cn.com.antcloud.api.riskplus.v1_0.model.RuntimeResult Maven / Gradle / Ivy

Go to download

Ant Chain API SDK For Java Copyright (c) 2020-present antgroup.com, https://www.antgroup.com

There is a newer version: 2.3.1
Show newest version
//
//  Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
//  Licensed under the Apache License, Version 2.0 (the "License");
//  you may not use this file except in compliance with the License.
//  You may obtain a copy of the License at
//
//  http://www.apache.org/licenses/LICENSE-2.0
//
//  Unless required by applicable law or agreed to in writing, software
//  distributed under the License is distributed on an "AS IS" BASIS,
//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//  See the License for the specific language governing permissions and
//  limitations under the License.
//
//
package cn.com.antcloud.api.riskplus.v1_0.model;

import java.lang.Boolean;
import java.lang.Long;
import java.lang.String;
import javax.validation.constraints.NotNull;

/**
 * 上传文件运行结果 */
public class RuntimeResult {
  @NotNull
  private Long code;

  @NotNull
  private Boolean success;

  @NotNull
  private String resultmsg;

  @NotNull
  private String data;

  /**
   * 上传成功 */
  public Long getCode() {
    return this.code;
  }

  /**
   * 上传成功 */
  public void setCode(Long code) {
    this.code = code;
  }

  /**
   * true代表上传成功,false代表上传失败 */
  public Boolean getSuccess() {
    return this.success;
  }

  /**
   * true代表上传成功,false代表上传失败 */
  public void setSuccess(Boolean success) {
    this.success = success;
  }

  /**
   * 上文件传成功 */
  public String getResultmsg() {
    return this.resultmsg;
  }

  /**
   * 上文件传成功 */
  public void setResultmsg(String resultmsg) {
    this.resultmsg = resultmsg;
  }

  /**
   * 文件上传结果 */
  public String getData() {
    return this.data;
  }

  /**
   * 文件上传结果 */
  public void setData(String data) {
    this.data = data;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy