(1)maat配置转换0.0.1版本jar提交,获取编译id可用,审核,取消审核部分报错,待凯歌修复完成测试通过之后更新版本。
(2)基础类配置精简后台代码,加入了从maat转换工具获取编译ID。审核,取消审核目前不可用,等jar包修复完成继续调整。 (3)编译ID字段改为int类型 (4)多域类配置后台提交。查询采用查一张主表,根据主表中的编译ID分开查其他表的方式关联。界面功能尚在调整。
This commit is contained in:
@@ -22,7 +22,12 @@ import com.nis.domain.BaseEntity;
|
||||
* @version V1.0
|
||||
*/
|
||||
public class BaseCfg<T> extends BaseEntity<T> {
|
||||
protected String seltype;//选中类型,页面搜索用
|
||||
protected String tableName;
|
||||
/**
|
||||
* 编译id
|
||||
*/
|
||||
protected Integer compileId ;
|
||||
@Expose
|
||||
@SerializedName("maatTable")
|
||||
protected String maatTable;
|
||||
@@ -630,6 +635,33 @@ public class BaseCfg<T> extends BaseEntity<T> {
|
||||
public void setSearch_audit_time_end(Date search_audit_time_end) {
|
||||
this.search_audit_time_end = search_audit_time_end;
|
||||
}
|
||||
/**
|
||||
* seltype
|
||||
* @return seltype
|
||||
*/
|
||||
|
||||
public String getSeltype() {
|
||||
return seltype;
|
||||
}
|
||||
/**
|
||||
* @param seltype the seltype to set
|
||||
*/
|
||||
public void setSeltype(String seltype) {
|
||||
this.seltype = seltype;
|
||||
}
|
||||
/**
|
||||
* compileId
|
||||
* @return compileId
|
||||
*/
|
||||
|
||||
public Integer getCompileId() {
|
||||
return compileId;
|
||||
}
|
||||
/**
|
||||
* @param compileId the compileId to set
|
||||
*/
|
||||
public void setCompileId(Integer compileId) {
|
||||
this.compileId = compileId;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user