列表界面样式修改,搜索框优化
This commit is contained in:
@@ -57,6 +57,14 @@ public abstract class BaseEntity<T> implements Serializable {
|
||||
* 设置为true后强制执行插入语句,ID不会自动生成,需从手动传入。
|
||||
*/
|
||||
protected boolean isNewRecord = false;
|
||||
|
||||
|
||||
/**
|
||||
* 筛选搜索框展开状态
|
||||
*/
|
||||
protected boolean isFilterAction = false;
|
||||
|
||||
|
||||
|
||||
public BaseEntity() {
|
||||
|
||||
@@ -162,6 +170,16 @@ public abstract class BaseEntity<T> implements Serializable {
|
||||
public String toString() {
|
||||
return ReflectionToStringBuilder.toString(this);
|
||||
}
|
||||
|
||||
|
||||
public void setIsFilterAction(boolean isFilterAction) {
|
||||
this.isFilterAction = isFilterAction;
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
public boolean getIsFilterAction() {
|
||||
return isFilterAction;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user