非maat配置取消
This commit is contained in:
@@ -14,10 +14,33 @@ import java.util.Date;
|
||||
*/
|
||||
public class FileDesc {
|
||||
|
||||
/**
|
||||
* 文件格式类型
|
||||
*/
|
||||
private String filetype;
|
||||
/**
|
||||
* 文件数据类型
|
||||
*/
|
||||
private String dataType;
|
||||
/**
|
||||
* fileSystem
|
||||
*/
|
||||
private String fileSystem;
|
||||
/**
|
||||
* 文件创建时间,UTC时间格式
|
||||
*/
|
||||
private Date createTime;
|
||||
/**
|
||||
* 文件惟一key
|
||||
*/
|
||||
private String key;
|
||||
/**
|
||||
*文件名称
|
||||
*/
|
||||
private String fileName;
|
||||
/**
|
||||
* 文件md5校验码
|
||||
*/
|
||||
private String checksum;
|
||||
/**
|
||||
*
|
||||
|
||||
64
src/main/java/com/nis/domain/restful/UpdateStatConfig.java
Normal file
64
src/main/java/com/nis/domain/restful/UpdateStatConfig.java
Normal file
@@ -0,0 +1,64 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName:CancleConfigSource
|
||||
* @Description:TODO(这里用一句话描述这个类的作用)
|
||||
* @author (zdx)
|
||||
* @date 2018年6月1日 下午6:08:09
|
||||
* @version V1.0
|
||||
*/
|
||||
public class UpdateStatConfig implements Serializable{
|
||||
|
||||
private static final long serialVersionUID = 6346336602908201877L;
|
||||
@ApiModelProperty(value = "配置ID", required = true)
|
||||
private Long cfgId;
|
||||
@ApiModelProperty(value = "业务ID", required = true)
|
||||
private Integer service;
|
||||
@ApiModelProperty(value = "是否有效", required = true)
|
||||
private Integer isValid;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public UpdateStatConfig() {
|
||||
super();
|
||||
// TODO Auto-generated constructor stub
|
||||
}
|
||||
/**
|
||||
* @param cfgId
|
||||
* @param service
|
||||
* @param isValid
|
||||
*/
|
||||
public UpdateStatConfig(Long cfgId, Integer service, Integer isValid) {
|
||||
super();
|
||||
this.cfgId = cfgId;
|
||||
this.service = service;
|
||||
this.isValid = isValid;
|
||||
}
|
||||
public Long getCfgId() {
|
||||
return cfgId;
|
||||
}
|
||||
public void setCfgId(Long cfgId) {
|
||||
this.cfgId = cfgId;
|
||||
}
|
||||
public Integer getService() {
|
||||
return service;
|
||||
}
|
||||
public void setService(Integer service) {
|
||||
this.service = service;
|
||||
}
|
||||
public Integer getIsValid() {
|
||||
return isValid;
|
||||
}
|
||||
public void setIsValid(Integer isValid) {
|
||||
this.isValid = isValid;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @ClassName:CancleConfigSource
|
||||
* @Description:TODO(这里用一句话描述这个类的作用)
|
||||
* @author (zdx)
|
||||
* @date 2018年6月1日 下午6:08:09
|
||||
* @version V1.0
|
||||
*/
|
||||
public class UpdateStatConfigSource implements Serializable{
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 277603807201929340L;
|
||||
private List<UpdateStatConfig> UpdateStatCfgList;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public UpdateStatConfigSource() {
|
||||
super();
|
||||
// TODO Auto-generated constructor stub
|
||||
}
|
||||
|
||||
/**
|
||||
* @param cancleConfigList
|
||||
*/
|
||||
public UpdateStatConfigSource(List<UpdateStatConfig> UpdateStatCfgList) {
|
||||
super();
|
||||
this.UpdateStatCfgList = UpdateStatCfgList;
|
||||
}
|
||||
|
||||
public List<UpdateStatConfig> getUpdateStatCfgList() {
|
||||
return UpdateStatCfgList;
|
||||
}
|
||||
|
||||
public void setUpdateStatCfgList(List<UpdateStatConfig> updateStatCfgList) {
|
||||
UpdateStatCfgList = updateStatCfgList;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user