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;
}
}

View File

@@ -0,0 +1,33 @@
package com.nis.domain.dashboard.codedic;
public class CodeBehaviorTypeDic {
private Integer id;
private String behaviorType;
private String viewCode;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getBehaviorType() {
return behaviorType;
}
public void setBehaviorType(String behaviorType) {
this.behaviorType = behaviorType == null ? null : behaviorType.trim();
}
public String getViewCode() {
return viewCode;
}
public void setViewCode(String viewCode) {
this.viewCode = viewCode == null ? null : viewCode.trim();
}
}

View File

@@ -0,0 +1,43 @@
package com.nis.domain.dashboard.codedic;
public class CodeBrowserTypeDic {
private Integer id;
private String browserType;
private String viewCode;
private String icon;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getBrowserType() {
return browserType;
}
public void setBrowserType(String browserType) {
this.browserType = browserType == null ? null : browserType.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();
}
}

View File

@@ -0,0 +1,43 @@
package com.nis.domain.dashboard.codedic;
public class CodeOsTypeDic {
private Integer id;
private String osType;
private String viewCode;
private String icon;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getOsType() {
return osType;
}
public void setOsType(String osType) {
this.osType = osType == null ? null : osType.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();
}
}

View File

@@ -0,0 +1,33 @@
package com.nis.domain.dashboard.codedic;
public class CodeProtocolTypeDic {
private Integer id;
private String protocolType;
private String viewCode;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getProtocolType() {
return protocolType;
}
public void setProtocolType(String protocolType) {
this.protocolType = protocolType == null ? null : protocolType.trim();
}
public String getViewCode() {
return viewCode;
}
public void setViewCode(String viewCode) {
this.viewCode = viewCode == null ? null : viewCode.trim();
}
}

View File

@@ -0,0 +1,33 @@
package com.nis.domain.dashboard.codedic;
public class CodeServiceTypeDic {
private Integer id;
private String serviceType;
private String viewCode;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getServiceType() {
return serviceType;
}
public void setServiceType(String serviceType) {
this.serviceType = serviceType == null ? null : serviceType.trim();
}
public String getViewCode() {
return viewCode;
}
public void setViewCode(String viewCode) {
this.viewCode = viewCode == null ? null : viewCode.trim();
}
}

View File

@@ -0,0 +1,53 @@
package com.nis.domain.dashboard.codedic;
public class CodeWebServiceDic {
private Integer id;
private String website;
private String domainName;
private String viewCode;
private String icon;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getWebsite() {
return website;
}
public void setWebsite(String website) {
this.website = website == null ? null : website.trim();
}
public String getDomainName() {
return domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName == null ? null : domainName.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();
}
}