120 lines
2.4 KiB
Java
120 lines
2.4 KiB
Java
|
|
/**
|
|||
|
|
* @Title: ConfigSource.java
|
|||
|
|
* @Package com.nis.domain.restful
|
|||
|
|
* @Description: TODO(用一句话描述该文件做什么)
|
|||
|
|
* @author (darnell)
|
|||
|
|
* @date 2016年8月29日 下午9:31:24
|
|||
|
|
* @version V1.0
|
|||
|
|
*/
|
|||
|
|
package com.nis.domain.restful;
|
|||
|
|
|
|||
|
|
import java.util.Date;
|
|||
|
|
import java.util.List;
|
|||
|
|
|
|||
|
|
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
|||
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|||
|
|
import com.nis.util.JsonDateDeserializer;
|
|||
|
|
import com.nis.util.JsonDateSerializer;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @ClassName:RegionRepeatSource
|
|||
|
|
* @Description:TODO(这里用一句话描述这个类的作用)
|
|||
|
|
* @author (zdx)
|
|||
|
|
* @date 2018年8月22日 下午7:03:36
|
|||
|
|
* @version V1.0
|
|||
|
|
*/
|
|||
|
|
public class GroupReuseSource extends ConfigCommonSource{
|
|||
|
|
|
|||
|
|
private static final long serialVersionUID = -7543263486915343526L;
|
|||
|
|
private static final String DEFAULT_VERSION = "1.0";
|
|||
|
|
private List<GroupReuse> groupReuseList; //分组复用域配置列表
|
|||
|
|
/**
|
|||
|
|
* @Title:
|
|||
|
|
* @Description: TODO
|
|||
|
|
* @param
|
|||
|
|
*/
|
|||
|
|
public GroupReuseSource() {
|
|||
|
|
this.version = DEFAULT_VERSION;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public GroupReuseSource(String Version) {
|
|||
|
|
this.version = Version;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @return version
|
|||
|
|
*/
|
|||
|
|
public String getVersion() {
|
|||
|
|
return version;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @param version 要设置的 version
|
|||
|
|
*/
|
|||
|
|
public void setVersion(String version) {
|
|||
|
|
this.version = version;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @return operator
|
|||
|
|
*/
|
|||
|
|
public String getOperator() {
|
|||
|
|
return operator;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @param operator 要设置的 operator
|
|||
|
|
*/
|
|||
|
|
public void setOperator(String operator) {
|
|||
|
|
this.operator = operator;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @return opTime
|
|||
|
|
*/
|
|||
|
|
@JsonSerialize(using=JsonDateSerializer.class)
|
|||
|
|
public Date getOpTime() {
|
|||
|
|
return opTime;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @param opTime 要设置的 opTime
|
|||
|
|
*/
|
|||
|
|
@JsonDeserialize(using=JsonDateDeserializer.class)
|
|||
|
|
public void setOpTime(Date opTime) {
|
|||
|
|
this.opTime = opTime;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @return opAction
|
|||
|
|
*/
|
|||
|
|
public Integer getOpAction() {
|
|||
|
|
return opAction;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @param opAction 要设置的 opAction
|
|||
|
|
*/
|
|||
|
|
public void setOpAction(Integer opAction) {
|
|||
|
|
this.opAction = opAction;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @return the groupReuseList
|
|||
|
|
*/
|
|||
|
|
public List<GroupReuse> getGroupReuseList() {
|
|||
|
|
return groupReuseList;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @param groupReuseList the groupReuseList to set
|
|||
|
|
*/
|
|||
|
|
public void setGroupReuseList(List<GroupReuse> groupReuseList) {
|
|||
|
|
this.groupReuseList = groupReuseList;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|