feat(Java_SpringExample): 优化类名、@auther、添加控制层测试

CacheController 缓存
                               EncodedController 编码
                               FreemarkerController 模板
                               FullFillTimeValueController 补时间
                               ITextController pdf生成
                               LoginController 登录控制
                               RedisController redis操作
                               RequestLimitController 接口访问频率控制
                               WangEditorController WangEditor编辑器使用
This commit is contained in:
huangzj
2020-06-30 16:16:31 +08:00
parent 85144d8d2f
commit b9d82ae29c
46 changed files with 6988 additions and 108 deletions
+56
View File
@@ -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;
}
}