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

xignzi006 发布系统代码,后台体系[Spring Boot]

上级 87da78ba
...@@ -196,6 +196,9 @@ public class Res_partner extends EntityMP implements Serializable { ...@@ -196,6 +196,9 @@ public class Res_partner extends EntityMP implements Serializable {
@JsonProperty("has_unreconciled_entries") @JsonProperty("has_unreconciled_entries")
private Boolean hasUnreconciledEntries; private Boolean hasUnreconciledEntries;
/**
* 标签
*/
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "category_id") @JSONField(name = "category_id")
@JsonProperty("category_id") @JsonProperty("category_id")
...@@ -1354,6 +1357,14 @@ public class Res_partner extends EntityMP implements Serializable { ...@@ -1354,6 +1357,14 @@ public class Res_partner extends EntityMP implements Serializable {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
return sdf.format(signupExpiration); return sdf.format(signupExpiration);
} }
/**
* 设置 [标签]
*/
public void setCategoryId(String categoryId){
this.categoryId = categoryId ;
this.modify("category_id",categoryId);
}
/** /**
* 设置 [网站业务伙伴的详细说明] * 设置 [网站业务伙伴的详细说明]
*/ */
......
...@@ -114,6 +114,9 @@ public class Res_supplier extends EntityMP implements Serializable { ...@@ -114,6 +114,9 @@ public class Res_supplier extends EntityMP implements Serializable {
@JsonProperty("website_url") @JsonProperty("website_url")
private String websiteUrl; private String websiteUrl;
/**
* 标签
*/
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "category_id") @JSONField(name = "category_id")
@JsonProperty("category_id") @JsonProperty("category_id")
...@@ -177,6 +180,14 @@ public class Res_supplier extends EntityMP implements Serializable { ...@@ -177,6 +180,14 @@ public class Res_supplier extends EntityMP implements Serializable {
this.modify("email",email); this.modify("email",email);
} }
/**
* 设置 [标签]
*/
public void setCategoryId(String categoryId){
this.categoryId = categoryId ;
this.modify("category_id",categoryId);
}
@Override @Override
public Serializable getDefaultKey(boolean gen) { public Serializable getDefaultKey(boolean gen) {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册