msgpack Object for testing
This commit is contained in:
parent
7ee1c24b27
commit
aa4eef4f32
|
@ -0,0 +1,34 @@
|
||||||
|
package com.insight.demo.serialize.model.msgpack;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class MessageData {
|
||||||
|
public String uuid;
|
||||||
|
public String name;
|
||||||
|
public int schema;
|
||||||
|
|
||||||
|
public String getUuid() {
|
||||||
|
return uuid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUuid(String uuid) {
|
||||||
|
this.uuid = uuid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getSchema() {
|
||||||
|
return schema;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSchema(int schema) {
|
||||||
|
this.schema = schema;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue