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

com.haoxuer.discover.plug.data.vo.PushBack Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.plug.data.vo;

import java.io.Serializable;

public class PushBack implements Serializable {

  private String msgId;
  private Long sendTime;
  private String timerId;
  private String requestId;

  public String getMsgId() {
    return msgId;
  }

  public void setMsgId(String msgId) {
    this.msgId = msgId;
  }

  public Long getSendTime() {
    return sendTime;
  }

  public void setSendTime(Long sendTime) {
    this.sendTime = sendTime;
  }

  public String getTimerId() {
    return timerId;
  }

  public void setTimerId(String timerId) {
    this.timerId = timerId;
  }

  public String getRequestId() {
    return requestId;
  }

  public void setRequestId(String requestId) {
    this.requestId = requestId;
  }

  @Override
  public String toString() {
    return "PushBack [msgId=" + msgId + ", sendTime=" + sendTime + ", timerId=" + timerId + ", requestId="
        + requestId + "]";
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy