(1)maat配置转换0.0.1版本jar提交,获取编译id可用,审核,取消审核部分报错,待凯歌修复完成测试通过之后更新版本。
(2)基础类配置精简后台代码,加入了从maat转换工具获取编译ID。审核,取消审核目前不可用,等jar包修复完成继续调整。 (3)编译ID字段改为int类型 (4)多域类配置后台提交。查询采用查一张主表,根据主表中的编译ID分开查其他表的方式关联。界面功能尚在调整。
This commit is contained in:
80
src/main/java/com/nis/domain/configuration/TableBean.java
Normal file
80
src/main/java/com/nis/domain/configuration/TableBean.java
Normal file
@@ -0,0 +1,80 @@
|
||||
/**
|
||||
*@Title: TableBean.java
|
||||
*@Package com.nis.domain.configuration
|
||||
*@Description TODO
|
||||
*@author dell
|
||||
*@date 2018年3月24日 下午5:20:51
|
||||
*@version 版本号
|
||||
*/
|
||||
package com.nis.domain.configuration;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @ClassName: TableBean.java
|
||||
* @Description: TODO
|
||||
* @author (dell)
|
||||
* @date 2018年3月24日 下午5:20:51
|
||||
* @version V1.0
|
||||
*/
|
||||
public class TableBean implements Serializable{
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
private static final long serialVersionUID = -7276874824312210708L;
|
||||
private String tableName;
|
||||
private String tableType;
|
||||
private boolean canEmpty;
|
||||
public TableBean(){
|
||||
|
||||
}
|
||||
public TableBean(String tableName,String tableType){
|
||||
this.tableName=tableName;
|
||||
this.tableType=tableType;
|
||||
}
|
||||
/**
|
||||
* tableName
|
||||
* @return tableName
|
||||
*/
|
||||
|
||||
public String getTableName() {
|
||||
return tableName;
|
||||
}
|
||||
/**
|
||||
* @param tableName the tableName to set
|
||||
*/
|
||||
public void setTableName(String tableName) {
|
||||
this.tableName = tableName;
|
||||
}
|
||||
/**
|
||||
* tableType
|
||||
* @return tableType
|
||||
*/
|
||||
|
||||
public String getTableType() {
|
||||
return tableType;
|
||||
}
|
||||
/**
|
||||
* @param tableType the tableType to set
|
||||
*/
|
||||
public void setTableType(String tableType) {
|
||||
this.tableType = tableType;
|
||||
}
|
||||
/**
|
||||
* canEmpty
|
||||
* @return canEmpty
|
||||
*/
|
||||
|
||||
public boolean isCanEmpty() {
|
||||
return canEmpty;
|
||||
}
|
||||
/**
|
||||
* @param canEmpty the canEmpty to set
|
||||
*/
|
||||
public void setCanEmpty(boolean canEmpty) {
|
||||
this.canEmpty = canEmpty;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user