1、修改非maat配置取消接口请求参数;
2、添加maat配置 配置存储接口中service与action对应关系验证
This commit is contained in:
@@ -1,64 +0,0 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
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