提交 727bb07d 编写于 作者: ibizdev's avatar ibizdev

ibiz4j 发布系统代码 [ibz-data,web]

上级 9c849452
...@@ -7,7 +7,7 @@ function getLocaleResourceBase(){ ...@@ -7,7 +7,7 @@ function getLocaleResourceBase(){
name: commonLogic.appcommonhandle("名称",null), name: commonLogic.appcommonhandle("名称",null),
title: commonLogic.appcommonhandle("名称",null), title: commonLogic.appcommonhandle("名称",null),
systemid: commonLogic.appcommonhandle("系统",null), systemid: commonLogic.appcommonhandle("系统",null),
package: commonLogic.appcommonhandle("包名",null), packagename: commonLogic.appcommonhandle("包名",null),
description: commonLogic.appcommonhandle("描述",null), description: commonLogic.appcommonhandle("描述",null),
schema: commonLogic.appcommonhandle("定义",null), schema: commonLogic.appcommonhandle("定义",null),
model: commonLogic.appcommonhandle("模型",null), model: commonLogic.appcommonhandle("模型",null),
......
...@@ -7,7 +7,7 @@ function getLocaleResourceBase(){ ...@@ -7,7 +7,7 @@ function getLocaleResourceBase(){
name: commonLogic.appcommonhandle("名称",null), name: commonLogic.appcommonhandle("名称",null),
title: commonLogic.appcommonhandle("名称",null), title: commonLogic.appcommonhandle("名称",null),
systemid: commonLogic.appcommonhandle("系统",null), systemid: commonLogic.appcommonhandle("系统",null),
package: commonLogic.appcommonhandle("包名",null), packagename: commonLogic.appcommonhandle("包名",null),
description: commonLogic.appcommonhandle("描述",null), description: commonLogic.appcommonhandle("描述",null),
schema: commonLogic.appcommonhandle("定义",null), schema: commonLogic.appcommonhandle("定义",null),
model: commonLogic.appcommonhandle("模型",null), model: commonLogic.appcommonhandle("模型",null),
......
...@@ -7,7 +7,7 @@ function getLocaleResourceBase(){ ...@@ -7,7 +7,7 @@ function getLocaleResourceBase(){
name: commonLogic.appcommonhandle("名称",null), name: commonLogic.appcommonhandle("名称",null),
title: commonLogic.appcommonhandle("名称",null), title: commonLogic.appcommonhandle("名称",null),
systemid: commonLogic.appcommonhandle("系统",null), systemid: commonLogic.appcommonhandle("系统",null),
package: commonLogic.appcommonhandle("包名",null), packagename: commonLogic.appcommonhandle("包名",null),
description: commonLogic.appcommonhandle("描述",null), description: commonLogic.appcommonhandle("描述",null),
schema: commonLogic.appcommonhandle("定义",null), schema: commonLogic.appcommonhandle("定义",null),
model: commonLogic.appcommonhandle("模型",null), model: commonLogic.appcommonhandle("模型",null),
......
...@@ -75,10 +75,11 @@ public class DOModel extends EntityBase implements Serializable { ...@@ -75,10 +75,11 @@ public class DOModel extends EntityBase implements Serializable {
/** /**
* 包名 * 包名
*/ */
@JSONField(name = "package") @DEField(name = "package")
@JsonProperty("package") @JSONField(name = "packageName")
@JsonProperty("packageName")
@ApiModelProperty("包名") @ApiModelProperty("包名")
private String package; private String packageName;
/** /**
* 描述 * 描述
...@@ -107,10 +108,10 @@ public class DOModel extends EntityBase implements Serializable { ...@@ -107,10 +108,10 @@ public class DOModel extends EntityBase implements Serializable {
/** /**
* 存储 * 存储
*/ */
@JSONField(name = "pOModels") @JSONField(name = "poModels")
@JsonProperty("pOModels") @JsonProperty("poModels")
@ApiModelProperty("存储") @ApiModelProperty("存储")
private String pomodels; private String poModels;
......
...@@ -75,10 +75,11 @@ public class DTOModel extends EntityBase implements Serializable { ...@@ -75,10 +75,11 @@ public class DTOModel extends EntityBase implements Serializable {
/** /**
* 包名 * 包名
*/ */
@JSONField(name = "package") @DEField(name = "package")
@JsonProperty("package") @JSONField(name = "packageName")
@JsonProperty("packageName")
@ApiModelProperty("包名") @ApiModelProperty("包名")
private String package; private String packageName;
/** /**
* 描述 * 描述
......
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
}, },
{ {
"fieldname":"PACKAGE" , "fieldname":"PACKAGE" ,
"codename":"Package", "codename":"PackageName",
"field_logic_name":"包名", "field_logic_name":"包名",
"entity_name":"DOMODEL", "entity_name":"DOMODEL",
"field_type":"TEXT", "field_type":"TEXT",
...@@ -128,7 +128,7 @@ ...@@ -128,7 +128,7 @@
}, },
{ {
"fieldname":"POMODELS" , "fieldname":"POMODELS" ,
"codename":"POModels", "codename":"PoModels",
"field_logic_name":"存储", "field_logic_name":"存储",
"entity_name":"DOMODEL", "entity_name":"DOMODEL",
"field_type":"LONGTEXT", "field_type":"LONGTEXT",
...@@ -217,7 +217,7 @@ ...@@ -217,7 +217,7 @@
}, },
{ {
"fieldname":"PACKAGE" , "fieldname":"PACKAGE" ,
"codename":"Package", "codename":"PackageName",
"field_logic_name":"包名", "field_logic_name":"包名",
"entity_name":"DTOMODEL", "entity_name":"DTOMODEL",
"field_type":"TEXT", "field_type":"TEXT",
......
...@@ -76,11 +76,11 @@ public class DOModelDTO extends DTOBase implements Serializable { ...@@ -76,11 +76,11 @@ public class DOModelDTO extends DTOBase implements Serializable {
* 属性 [PACKAGE] * 属性 [PACKAGE]
* *
*/ */
@JSONField(name = "package") @JSONField(name = "packagename")
@JsonProperty("package") @JsonProperty("packagename")
@Size(min = 0, max = 100, message = "内容长度必须小于等于[100]") @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
@ApiModelProperty("包名") @ApiModelProperty("包名")
private String package; private String packageName;
/** /**
* 属性 [DESCRIPTION] * 属性 [DESCRIPTION]
...@@ -120,7 +120,7 @@ public class DOModelDTO extends DTOBase implements Serializable { ...@@ -120,7 +120,7 @@ public class DOModelDTO extends DTOBase implements Serializable {
@JsonProperty("pomodels") @JsonProperty("pomodels")
@Size(min = 0, max = 100, message = "内容长度必须小于等于[100]") @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
@ApiModelProperty("存储") @ApiModelProperty("存储")
private String pomodels; private String poModels;
/** /**
...@@ -150,9 +150,9 @@ public class DOModelDTO extends DTOBase implements Serializable { ...@@ -150,9 +150,9 @@ public class DOModelDTO extends DTOBase implements Serializable {
/** /**
* 设置 [PACKAGE] * 设置 [PACKAGE]
*/ */
public void setPackage(String package){ public void setPackageName(String packageName){
this.package = package ; this.packageName = packageName ;
this.modify("package",package); this.modify("package",packageName);
} }
/** /**
...@@ -182,9 +182,9 @@ public class DOModelDTO extends DTOBase implements Serializable { ...@@ -182,9 +182,9 @@ public class DOModelDTO extends DTOBase implements Serializable {
/** /**
* 设置 [POMODELS] * 设置 [POMODELS]
*/ */
public void setPomodels(String pomodels){ public void setPoModels(String poModels){
this.pomodels = pomodels ; this.poModels = poModels ;
this.modify("pomodels",pomodels); this.modify("pomodels",poModels);
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册