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

com.haoxuer.discover.data.vo.StateVo Maven / Gradle / Ivy

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

import java.io.Serializable;

public class StateVo implements Serializable {

  private int code;

  private String message;

  public int getCode() {
    return code;
  }

  public void setCode(int code) {
    this.code = code;
  }

  public String getMessage() {
    return message;
  }

  public void setMessage(String message) {
    this.message = message;
  }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy