1.修改日志显示问题,后台打印请求路径2.增加页面标签显示code类

This commit is contained in:
zhanghongqing
2018-07-10 12:32:39 +08:00
parent c17501aa42
commit cd954463f5
32 changed files with 854 additions and 37 deletions

View File

@@ -0,0 +1,73 @@
package com.nis.domain.dashboard.codedic;
public class CodeAppDic {
private Integer id;
private String appName;
private String appNameZh;
private String viewCode;
private String icon;
private String behavior;
private Integer coreApp;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getAppName() {
return appName;
}
public void setAppName(String appName) {
this.appName = appName == null ? null : appName.trim();
}
public String getAppNameZh() {
return appNameZh;
}
public void setAppNameZh(String appNameZh) {
this.appNameZh = appNameZh == null ? null : appNameZh.trim();
}
public String getViewCode() {
return viewCode;
}
public void setViewCode(String viewCode) {
this.viewCode = viewCode == null ? null : viewCode.trim();
}
public String getIcon() {
return icon;
}
public void setIcon(String icon) {
this.icon = icon == null ? null : icon.trim();
}
public String getBehavior() {
return behavior;
}
public void setBehavior(String behavior) {
this.behavior = behavior == null ? null : behavior.trim();
}
public Integer getCoreApp() {
return coreApp;
}
public void setCoreApp(Integer coreApp) {
this.coreApp = coreApp;
}
}