增加日志FTP页面展示及国际化

This commit is contained in:
zhanghongqing
2018-06-22 10:37:44 +08:00
parent b13f07351d
commit 875477650a
7 changed files with 995 additions and 644 deletions

View File

@@ -0,0 +1,30 @@
package com.nis.domain.log;
public class NtcFtpLog extends BaseLogEntity<NtcFtpLog> {
/**
*
*/
private static final long serialVersionUID = 348767275603485504L;
private String ftpUrl;//FTP链接
private String ftpContent;//FTP内容
public String getFtpUrl() {
return ftpUrl;
}
public void setFtpUrl(String ftpUrl) {
this.ftpUrl = ftpUrl;
}
public String getFtpContent() {
return ftpContent;
}
public void setFtpContent(String ftpContent) {
this.ftpContent = ftpContent;
}
}