日志字段增加排序

This commit is contained in:
zhanghongqing
2018-10-31 09:56:38 +08:00
parent 8ef35d837a
commit a3f33c01e4
38 changed files with 656 additions and 627 deletions

View File

@@ -41,7 +41,15 @@ public class BaseLogEntity<T> extends BaseEntity<T> {
protected String searchFoundEndTime;//结束时间,格式同上
protected String isLogTotalSearch;//由配置列表点击日志总量进行查询的标识
protected String orderBy;//排序参数
public String getOrderBy() {
return orderBy;
}
public void setOrderBy(String orderBy) {
this.orderBy = orderBy;
}
public String getFoundTime() {
return foundTime;
}