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

View File

@@ -28,7 +28,7 @@ public class AppByteCfg extends BaseCfg<AppByteCfg> {
@Expose
private Integer compileId;
@Expose
private Integer ratelimit;
private String ratelimit;
private Integer appCode;//specific_service_cfg表一级节点的spec_service_code
private Integer behavCode;//specific_service_cfg表二级节点的spec_service_code
private Integer specServiceId;
@@ -93,11 +93,11 @@ public class AppByteCfg extends BaseCfg<AppByteCfg> {
return tableName;
}
public Integer getRatelimit() {
public String getRatelimit() {
return ratelimit;
}
public void setRatelimit(Integer ratelimit) {
public void setRatelimit(String ratelimit) {
this.ratelimit = ratelimit;
}
public Integer getAppCode() {