聊天后台entity对象提交

lvxinran 2020-07-30 02:51:09 +08:00
parent abadfaece8
commit 66eb4711b2
1 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,80 @@
package com.ljsd.jieling.chat;
/**
* @author lvxinran
* @date 2020/7/22
* @discribe
*/
public class ChatRedisEntity {
private int uid;
private String name;
private int type;
private String message;
private Long time;
private int status;
public ChatRedisEntity(){};
public ChatRedisEntity(int uid, String name, int type, String message, Long time, int status) {
this.uid = uid;
this.name = name;
this.type = type;
this.message = message;
this.time = time;
this.status = status;
}
public int getUid() {
return uid;
}
public void setUid(int uid) {
this.uid = uid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public Long getTime() {
return time;
}
public void setTime(Long time) {
this.time = time;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
}