This commit is contained in:
thinkgem
2022-06-06 11:36:20 +08:00
parent 208fbb7320
commit f470fcfdfd
2 changed files with 10 additions and 12 deletions

View File

@@ -210,7 +210,8 @@ a, a:hover, a:active, a:focus, .form-unit, th[aria-selected=true] .ui-jqgrid-sor
.btn-default:active:focus, .btn-default:active:hover, .open>.dropdown-toggle.btn-default.focus, .btn-default:active:focus, .btn-default:active:hover, .open>.dropdown-toggle.btn-default.focus,
.open>.dropdown-toggle.btn-default:focus, .open>.dropdown-toggle.btn-default:hover { .open>.dropdown-toggle.btn-default:focus, .open>.dropdown-toggle.btn-default:hover {
background-color:#3e3e3e;border-color:#3e3e3e;color:#eee;} background-color:#3e3e3e;border-color:#3e3e3e;color:#eee;}
.input-group-btn .btn, .treeSearchInput button {background-color:#1a1a1a;border-color:#3c3c3c;color:#ddd;} .input-group-btn .btn, .treeSearchInput button, .treeSearchInput button:hover, .treeSearchInput button:focus {
background-color:#1a1a1a;border-color:#3c3c3c;color:#ddd;}
.treeExpandCollapse, .treeExpandCollapse a {background-color:#1a1a1a;color:#8d8d8d;} .treeExpandCollapse, .treeExpandCollapse a {background-color:#1a1a1a;color:#8d8d8d;}
.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary, .btn-primary:hover, .btn-primary:active,

View File

@@ -4,13 +4,6 @@
*/ */
package com.jeesite.modules.sys.entity; package com.jeesite.modules.sys.entity;
import java.util.Map;
import javax.validation.constraints.NotBlank;
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
import javax.validation.constraints.Size;
import com.jeesite.common.codec.EncodeUtils; import com.jeesite.common.codec.EncodeUtils;
import com.jeesite.common.collect.MapUtils; import com.jeesite.common.collect.MapUtils;
import com.jeesite.common.entity.BaseEntity; import com.jeesite.common.entity.BaseEntity;
@@ -21,6 +14,10 @@ import com.jeesite.common.mybatis.annotation.Column;
import com.jeesite.common.mybatis.annotation.Table; import com.jeesite.common.mybatis.annotation.Table;
import com.jeesite.common.mybatis.mapper.query.QueryType; import com.jeesite.common.mybatis.mapper.query.QueryType;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.Size;
import java.util.Map;
/** /**
* 操作日志Entity * 操作日志Entity
* @author ThinkGem * @author ThinkGem
@@ -284,9 +281,9 @@ public class Log extends DataEntity<Log> {
return values != null && values.length > 0 ? values[0] : null; return values != null && values.length > 0 ? values[0] : null;
} }
@Override // @Override
public String toString() { // public String toString() {
return ReflectionToStringBuilder.toString(this); // return ReflectionToStringBuilder.toString(this);
} // }
} }