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

cn.com.antcloud.api.riskplus.v1_0.model.RtopCompanyFeedback 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.Long;
import java.lang.String;
import javax.validation.constraints.NotNull;

/**
 * 企业反馈 */
public class RtopCompanyFeedback {
  @NotNull
  private Long id;

  @NotNull
  private String companyId;

  @NotNull
  private String feedbackReason;

  @NotNull
  private String feedbackReasonDetail;

  @NotNull
  private String comment;

  /**
   * 主键 */
  public Long getId() {
    return this.id;
  }

  /**
   * 主键 */
  public void setId(Long id) {
    this.id = id;
  }

  /**
   * 企业ID */
  public String getCompanyId() {
    return this.companyId;
  }

  /**
   * 企业ID */
  public void setCompanyId(String companyId) {
    this.companyId = companyId;
  }

  /**
   * 反馈原因 */
  public String getFeedbackReason() {
    return this.feedbackReason;
  }

  /**
   * 反馈原因 */
  public void setFeedbackReason(String feedbackReason) {
    this.feedbackReason = feedbackReason;
  }

  /**
   * 反馈原因详情 */
  public String getFeedbackReasonDetail() {
    return this.feedbackReasonDetail;
  }

  /**
   * 反馈原因详情 */
  public void setFeedbackReasonDetail(String feedbackReasonDetail) {
    this.feedbackReasonDetail = feedbackReasonDetail;
  }

  /**
   * 评论 */
  public String getComment() {
    return this.comment;
  }

  /**
   * 评论 */
  public void setComment(String comment) {
    this.comment = comment;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy