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

xignzi006 发布系统代码

上级 847e6b01
...@@ -98,10 +98,11 @@ public class Ir_attachment extends EntityMP implements Serializable { ...@@ -98,10 +98,11 @@ public class Ir_attachment extends EntityMP implements Serializable {
/** /**
* public * public
*/ */
@DEField(name = "public")
@TableField(value = "public") @TableField(value = "public")
@JSONField(name = "public") @JSONField(name = "ibizpublic")
@JsonProperty("public") @JsonProperty("ibizpublic")
private Boolean public; private Boolean ibizpublic;
/** /**
* access_token * access_token
*/ */
...@@ -232,9 +233,9 @@ public class Ir_attachment extends EntityMP implements Serializable { ...@@ -232,9 +233,9 @@ public class Ir_attachment extends EntityMP implements Serializable {
/** /**
* 设置 [public] * 设置 [public]
*/ */
public void setPublic(Boolean public){ public void setIbizpublic(Boolean ibizpublic){
this.public = public ; this.ibizpublic = ibizpublic ;
this.modify("public",public); this.modify("public",ibizpublic);
} }
/** /**
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
<result property="resModel" column="res_model" /> <result property="resModel" column="res_model" />
<result property="resField" column="res_field" /> <result property="resField" column="res_field" />
<result property="resId" column="res_id" /> <result property="resId" column="res_id" />
<result property="ibizpublic" column="public" />
<result property="accessToken" column="access_token" /> <result property="accessToken" column="access_token" />
<result property="storeFname" column="store_fname" /> <result property="storeFname" column="store_fname" />
<result property="fileSize" column="file_size" /> <result property="fileSize" column="file_size" />
......
...@@ -71370,7 +71370,7 @@ ...@@ -71370,7 +71370,7 @@
}, },
{ {
"fieldname":"PUBLIC" , "fieldname":"PUBLIC" ,
"codename":"Public", "codename":"Ibizpublic",
"field_logic_name":"public", "field_logic_name":"public",
"entity_name":"Ir_attachment", "entity_name":"Ir_attachment",
"field_type":"TRUEFALSE", "field_type":"TRUEFALSE",
...@@ -96,9 +96,9 @@ public class Ir_attachmentDTO extends DTOBase implements Serializable { ...@@ -96,9 +96,9 @@ public class Ir_attachmentDTO extends DTOBase implements Serializable {
* 属性 [PUBLIC] * 属性 [PUBLIC]
* *
*/ */
@JSONField(name = "public") @JSONField(name = "ibizpublic")
@JsonProperty("public") @JsonProperty("ibizpublic")
private Boolean public; private Boolean ibizpublic;
/** /**
* 属性 [ACCESS_TOKEN] * 属性 [ACCESS_TOKEN]
...@@ -232,9 +232,9 @@ public class Ir_attachmentDTO extends DTOBase implements Serializable { ...@@ -232,9 +232,9 @@ public class Ir_attachmentDTO extends DTOBase implements Serializable {
/** /**
* 设置 [PUBLIC] * 设置 [PUBLIC]
*/ */
public void setPublic(Boolean public){ public void setIbizpublic(Boolean ibizpublic){
this.public = public ; this.ibizpublic = ibizpublic ;
this.modify("public",public); this.modify("public",ibizpublic);
} }
/** /**
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册