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

cn.com.antcloud.api.catronus.v1_0.request.UpdateRiskTaskRequest Maven / Gradle / Ivy

Go to download

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

The 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.catronus.v1_0.request;

import cn.com.antcloud.api.catronus.v1_0.response.UpdateRiskTaskResponse;
import cn.com.antcloud.api.product.AntCloudProdRequest;
import java.lang.String;
import java.util.List;
import javax.validation.constraints.NotNull;

/**
 * 更新风险工单,包括驳回工单,转派工单,撤销工单,确认接收工单,确认修复工单等操作,及添加关注人等 */
public class UpdateRiskTaskRequest extends AntCloudProdRequest {
  @NotNull
  private String riskTaskId;

  @NotNull
  private String state;

  private String owner;

  private String secOwner;

  private List followers;

  private String riskSolutionId;

  private String _prod_code = "CATRONUS";

  public UpdateRiskTaskRequest(String productInstanceId) {
    super("antcloud.catronus.risk.task.update", "1.0", "Java-SDK-20230525", productInstanceId);
  }

  public UpdateRiskTaskRequest() {
    super("antcloud.catronus.risk.task.update", "1.0", null);
    this.setSdkVersion("Java-SDK-20230525");
  }

  /**
   * Product code */
  public String get_prod_code() {
    return this._prod_code;
  }

  /**
   * Product code */
  public void set_prod_code(String _prod_code) {
    this._prod_code = _prod_code;
  }

  /**
   * 风险共担ID */
  public String getRiskTaskId() {
    return this.riskTaskId;
  }

  /**
   * 风险共担ID */
  public void setRiskTaskId(String riskTaskId) {
    this.riskTaskId = riskTaskId;
  }

  /**
   * 风险工单状态 */
  public String getState() {
    return this.state;
  }

  /**
   * 风险工单状态 */
  public void setState(String state) {
    this.state = state;
  }

  /**
   * 风险责任人 */
  public String getOwner() {
    return this.owner;
  }

  /**
   * 风险责任人 */
  public void setOwner(String owner) {
    this.owner = owner;
  }

  /**
   * 安全责任人 */
  public String getSecOwner() {
    return this.secOwner;
  }

  /**
   * 安全责任人 */
  public void setSecOwner(String secOwner) {
    this.secOwner = secOwner;
  }

  /**
   * 风险关注人员列表 */
  public List getFollowers() {
    return this.followers;
  }

  /**
   * 风险关注人员列表 */
  public void setFollowers(List followers) {
    this.followers = followers;
  }

  /**
   * 风险解决方案ID */
  public String getRiskSolutionId() {
    return this.riskSolutionId;
  }

  /**
   * 风险解决方案ID */
  public void setRiskSolutionId(String riskSolutionId) {
    this.riskSolutionId = riskSolutionId;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy