feat(Java_SpringExample): 优化类名、@auther、添加控制层测试
CacheController 缓存
EncodedController 编码
FreemarkerController 模板
FullFillTimeValueController 补时间
ITextController pdf生成
LoginController 登录控制
RedisController redis操作
RequestLimitController 接口访问频率控制
WangEditorController WangEditor编辑器使用
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
/*
|
||||
* @(#) 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user