/* * @(#) TplMessage * 版权声明 网宿科技, 版权所有 违者必究 * *
Copyright: Copyright (c) 2018 *
Company:网宿科技 *
@author Administrator *
@description 功能描述 *
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; } }