Commit 7d7252b3 by Future

阅后即焚入参透传

parent 8c217478
...@@ -45,6 +45,16 @@ public class ChatContentVo extends BaseRequest { ...@@ -45,6 +45,16 @@ public class ChatContentVo extends BaseRequest {
*/ */
String at; String at;
/**
* 是否阅后即焚 0-否 1-是
*/
Integer burn;
/**
* 多久之后开始焚毁消息 单位秒
*/
Integer timeToBurn;
public PushVO getPush() { public PushVO getPush() {
return JsonUtils.beanCopyDeep(this.get("push"), PushVO.class); return JsonUtils.beanCopyDeep(this.get("push"), PushVO.class);
} }
...@@ -86,6 +96,22 @@ public class ChatContentVo extends BaseRequest { ...@@ -86,6 +96,22 @@ public class ChatContentVo extends BaseRequest {
this.at = at; this.at = at;
} }
public Integer getBurn() {
return burn;
}
public void setBurn(Integer burn) {
this.burn = burn;
}
public Integer getTimeToBurn() {
return timeToBurn;
}
public void setTimeToBurn(Integer timeToBurn) {
this.timeToBurn = timeToBurn;
}
@Override @Override
public String getReqId() { public String getReqId() {
return reqId; return reqId;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment