app内置特征文件上传

This commit is contained in:
duandongmei
2018-08-28 13:40:04 +08:00
parent 2f4a33785d
commit 34b1caa445
12 changed files with 1154 additions and 8 deletions

View File

@@ -0,0 +1,23 @@
package com.nis.domain.configuration;
import java.util.Date;
/**
* 内置文件上传
* @author dell
*
*/
public class AppBuiltInFeatureFile extends BaseCfg<AppBuiltInFeatureFile> {
/**
*
*/
private static final long serialVersionUID = -2720862431960415564L;
private String filePath;
public String getFilePath() {
return filePath;
}
public void setFilePath(String filePath) {
this.filePath = filePath;
}
}