package com.yeshi.fanli.dto.mq.user.body;
|
|
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
|
|
/**
|
* 内部口令
|
*
|
* @author Administrator
|
*
|
*/
|
public class InterTokenMQMsg extends BaseMQMsgBody {
|
private Long id;// 口令ID
|
private String token;// 口令
|
|
public InterTokenMQMsg(Long id, String token) {
|
super();
|
this.id = id;
|
this.token = token;
|
}
|
|
public InterTokenMQMsg() {
|
super();
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getToken() {
|
return token;
|
}
|
|
public void setToken(String token) {
|
this.token = token;
|
}
|
}
|