57 lines
1.1 KiB
Java
57 lines
1.1 KiB
Java
|
|
/*
|
||
|
|
* @(#) TplMessage
|
||
|
|
* 版权声明 网宿科技, 版权所有 违者必究
|
||
|
|
*
|
||
|
|
* <br> Copyright: Copyright (c) 2018
|
||
|
|
* <br> Company:网宿科技
|
||
|
|
* <br> @author Administrator
|
||
|
|
* <br> @description 功能描述
|
||
|
|
* <br> 2018-11-13 20:42:05
|
||
|
|
*/
|
||
|
|
|
||
|
|
package model.tpl;
|
||
|
|
|
||
|
|
public class TplMessage {
|
||
|
|
|
||
|
|
|
||
|
|
private String identification;
|
||
|
|
|
||
|
|
private String time;
|
||
|
|
|
||
|
|
private String platform;
|
||
|
|
|
||
|
|
private String statistic;
|
||
|
|
|
||
|
|
public String getIdentification() {
|
||
|
|
return identification;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIdentification(String identification) {
|
||
|
|
this.identification = identification;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getTime() {
|
||
|
|
return time;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setTime(String time) {
|
||
|
|
this.time = time;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getPlatform() {
|
||
|
|
return platform;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPlatform(String platform) {
|
||
|
|
this.platform = platform;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getStatistic() {
|
||
|
|
return statistic;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setStatistic(String statistic) {
|
||
|
|
this.statistic = statistic;
|
||
|
|
}
|
||
|
|
}
|