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

com.haoxuer.discover.user.api.domain.request.UserFeedBackPostRequest Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.user.api.domain.request;

import com.haoxuer.discover.rest.base.RequestUserTokenObject;

public class UserFeedBackPostRequest extends RequestUserTokenObject {

  private String title;


  private String note;

  /**
   * 反馈人名字
   */
  private String name;

  /**
   * 反馈人QQ
   */
  private String qq;

  /**
   * 反馈人电话
   */
  private String phone;

  public String getTitle() {
    return title;
  }

  public void setTitle(String title) {
    this.title = title;
  }

  public String getNote() {
    return note;
  }

  public void setNote(String note) {
    this.note = note;
  }

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getQq() {
    return qq;
  }

  public void setQq(String qq) {
    this.qq = qq;
  }

  public String getPhone() {
    return phone;
  }

  public void setPhone(String phone) {
    this.phone = phone;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy