com.github.unclecatmyself.common.bean.vo.NotFindUriVO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of InChat Show documentation
Show all versions of InChat Show documentation
A lightweight, efficient communication framework that supports chat and the Internet of Things
The newest version!
package com.github.unclecatmyself.common.bean.vo;
/**
* Create by UncleCatMySelf in 11:21 2018\12\31 0031
*/
public class NotFindUriVO {
private String message;
public NotFindUriVO(String message) {
this.message = message;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
}