(2)基础类配置精简后台代码,加入了从maat转换工具获取编译ID。审核,取消审核目前不可用,等jar包修复完成继续调整。 (3)编译ID字段改为int类型 (4)多域类配置后台提交。查询采用查一张主表,根据主表中的编译ID分开查其他表的方式关联。界面功能尚在调整。
79 lines
1.6 KiB
Java
79 lines
1.6 KiB
Java
/**
|
||
*@Title: NumBoundaryConfig.java
|
||
*@Package com.nis.domain.restful
|
||
*@Description TODO
|
||
*@author dell
|
||
*@date 2018年2月6日 上午10:37:45
|
||
*@version 版本号
|
||
*/
|
||
package com.nis.domain.configuration;
|
||
|
||
import com.google.gson.annotations.Expose;
|
||
import com.google.gson.annotations.SerializedName;
|
||
|
||
/**
|
||
* @ClassName: NumBoundaryConfig.java
|
||
* @Description: TODO
|
||
* @author (dell)
|
||
* @date 2018年2月6日 上午10:37:45
|
||
* @version V1.0
|
||
*/
|
||
public class NumBoundaryCfg extends BaseCfg<NumBoundaryCfg> {
|
||
|
||
/**
|
||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||
*
|
||
* @since 1.0.0
|
||
*/
|
||
|
||
private static final long serialVersionUID = -7655744880438502818L;
|
||
/**
|
||
* 数值下界
|
||
*/
|
||
@Expose
|
||
@SerializedName("lowBounadry")
|
||
protected Long lowBounadry;
|
||
/**
|
||
* 数值上界
|
||
*/
|
||
@Expose
|
||
@SerializedName("upBoundary")
|
||
protected Long upBoundary;
|
||
/* (non-Javadoc)
|
||
* @see com.nis.domain.configuration.BaseCfg#initDefaultValue()
|
||
*/
|
||
@Override
|
||
public void initDefaultValue() {
|
||
// TODO Auto-generated method stub
|
||
super.initDefaultValue();
|
||
}
|
||
/**
|
||
* lowBounadry
|
||
* @return lowBounadry
|
||
*/
|
||
|
||
public Long getLowBounadry() {
|
||
return lowBounadry;
|
||
}
|
||
/**
|
||
* @param lowBounadry the lowBounadry to set
|
||
*/
|
||
public void setLowBounadry(Long lowBounadry) {
|
||
this.lowBounadry = lowBounadry;
|
||
}
|
||
/**
|
||
* upBoundary
|
||
* @return upBoundary
|
||
*/
|
||
|
||
public Long getUpBoundary() {
|
||
return upBoundary;
|
||
}
|
||
/**
|
||
* @param upBoundary the upBoundary to set
|
||
*/
|
||
public void setUpBoundary(Long upBoundary) {
|
||
this.upBoundary = upBoundary;
|
||
}
|
||
}
|