测试页面修改
This commit is contained in:
@@ -10,6 +10,8 @@ package com.nis.domain.log;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
import com.nis.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* @ClassName: SearchReport.java
|
||||
* @Description: TODO
|
||||
@@ -17,7 +19,17 @@ import java.util.HashMap;
|
||||
* @date 2018年7月5日 下午12:30:44
|
||||
* @version V1.0
|
||||
*/
|
||||
public class SearchReport {
|
||||
public class SearchReport extends BaseEntity<SearchReport>{
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
private Integer functionId;
|
||||
private String cfgName;
|
||||
private Integer action;
|
||||
private String searchBusinessType;
|
||||
private String searchReportStartTime;
|
||||
private String searchReportEndTime;
|
||||
@@ -25,6 +37,48 @@ public class SearchReport {
|
||||
private HashMap<String,Object> searchCondition;
|
||||
public static final String searchConditionSplitor=",";
|
||||
public int searchConditionLimit;
|
||||
/**
|
||||
* functionId
|
||||
* @return functionId
|
||||
*/
|
||||
|
||||
public Integer getFunctionId() {
|
||||
return functionId;
|
||||
}
|
||||
/**
|
||||
* @param functionId the functionId to set
|
||||
*/
|
||||
public void setFunctionId(Integer functionId) {
|
||||
this.functionId = functionId;
|
||||
}
|
||||
/**
|
||||
* cfgName
|
||||
* @return cfgName
|
||||
*/
|
||||
|
||||
public String getCfgName() {
|
||||
return cfgName;
|
||||
}
|
||||
/**
|
||||
* @param cfgName the cfgName to set
|
||||
*/
|
||||
public void setCfgName(String cfgName) {
|
||||
this.cfgName = cfgName;
|
||||
}
|
||||
/**
|
||||
* action
|
||||
* @return action
|
||||
*/
|
||||
|
||||
public Integer getAction() {
|
||||
return action;
|
||||
}
|
||||
/**
|
||||
* @param action the action to set
|
||||
*/
|
||||
public void setAction(Integer action) {
|
||||
this.action = action;
|
||||
}
|
||||
/**
|
||||
* searchBusinessType
|
||||
* @return searchBusinessType
|
||||
|
||||
Reference in New Issue
Block a user