This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/domain/configuration/NumBoundaryCfg.java
wangxin 9d50205d5f (1)maat配置转换0.0.1版本jar提交,获取编译id可用,审核,取消审核部分报错,待凯歌修复完成测试通过之后更新版本。
(2)基础类配置精简后台代码,加入了从maat转换工具获取编译ID。审核,取消审核目前不可用,等jar包修复完成继续调整。
(3)编译ID字段改为int类型
(4)多域类配置后台提交。查询采用查一张主表,根据主表中的编译ID分开查其他表的方式关联。界面功能尚在调整。
2018-03-26 14:43:58 +08:00

79 lines
1.6 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
*@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;
}
}