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

xignzi006 发布系统代码

上级 d25a9a78
...@@ -84,7 +84,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -84,7 +84,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
@TableField(value = "multi") @TableField(value = "multi")
@JSONField(name = "multi") @JSONField(name = "multi")
@JsonProperty("multi") @JsonProperty("multi")
private Boolean multi; private Object multi;
/** /**
* 日记账项目标签 * 日记账项目标签
*/ */
...@@ -99,7 +99,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -99,7 +99,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "show_partner_bank_account") @JSONField(name = "show_partner_bank_account")
@JsonProperty("show_partner_bank_account") @JsonProperty("show_partner_bank_account")
private Boolean showPartnerBankAccount; private Object showPartnerBankAccount;
/** /**
* 显示名称 * 显示名称
*/ */
...@@ -113,7 +113,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -113,7 +113,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "hide_payment_method") @JSONField(name = "hide_payment_method")
@JsonProperty("hide_payment_method") @JsonProperty("hide_payment_method")
private Boolean hidePaymentMethod; private Object hidePaymentMethod;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -299,7 +299,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -299,7 +299,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [付款差异处理] * 设置 [付款差异处理]
*/ */
public void setPaymentDifferenceHandling(String paymentDifferenceHandling){ public void setPaymentDifferenceHandling(String paymentDifferenceHandling){
this.paymentDifferenceHandling = paymentDifferenceHandling ; //2 this.paymentDifferenceHandling = paymentDifferenceHandling ;
this.modify("payment_difference_handling",paymentDifferenceHandling); this.modify("payment_difference_handling",paymentDifferenceHandling);
} }
...@@ -307,7 +307,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -307,7 +307,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [业务伙伴类型] * 设置 [业务伙伴类型]
*/ */
public void setPartnerType(String partnerType){ public void setPartnerType(String partnerType){
this.partnerType = partnerType ; //2 this.partnerType = partnerType ;
this.modify("partner_type",partnerType); this.modify("partner_type",partnerType);
} }
...@@ -315,15 +315,15 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -315,15 +315,15 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [付款金额] * 设置 [付款金额]
*/ */
public void setAmount(BigDecimal amount){ public void setAmount(BigDecimal amount){
this.amount = amount ; //2 this.amount = amount ;
this.modify("amount",amount); this.modify("amount",amount);
} }
/** /**
* 设置 [多] * 设置 [多]
*/ */
public void setMulti(Boolean multi){ public void setMulti(Object multi){
this.multi = multi ; //2 this.multi = multi ;
this.modify("multi",multi); this.modify("multi",multi);
} }
...@@ -331,7 +331,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -331,7 +331,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [日记账项目标签] * 设置 [日记账项目标签]
*/ */
public void setWriteoffLabel(String writeoffLabel){ public void setWriteoffLabel(String writeoffLabel){
this.writeoffLabel = writeoffLabel ; //2 this.writeoffLabel = writeoffLabel ;
this.modify("writeoff_label",writeoffLabel); this.modify("writeoff_label",writeoffLabel);
} }
...@@ -339,7 +339,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -339,7 +339,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [备忘] * 设置 [备忘]
*/ */
public void setCommunication(String communication){ public void setCommunication(String communication){
this.communication = communication ; //2 this.communication = communication ;
this.modify("communication",communication); this.modify("communication",communication);
} }
...@@ -347,7 +347,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -347,7 +347,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [付款类型] * 设置 [付款类型]
*/ */
public void setPaymentType(String paymentType){ public void setPaymentType(String paymentType){
this.paymentType = paymentType ; //2 this.paymentType = paymentType ;
this.modify("payment_type",paymentType); this.modify("payment_type",paymentType);
} }
...@@ -355,7 +355,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -355,7 +355,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [付款日期] * 设置 [付款日期]
*/ */
public void setPaymentDate(Timestamp paymentDate){ public void setPaymentDate(Timestamp paymentDate){
this.paymentDate = paymentDate ; //2 this.paymentDate = paymentDate ;
this.modify("payment_date",paymentDate); this.modify("payment_date",paymentDate);
} }
...@@ -373,7 +373,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -373,7 +373,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [币种] * 设置 [币种]
*/ */
public void setCurrencyId(Long currencyId){ public void setCurrencyId(Long currencyId){
this.currencyId = currencyId ; //2 this.currencyId = currencyId ;
this.modify("currency_id",currencyId); this.modify("currency_id",currencyId);
} }
...@@ -381,7 +381,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -381,7 +381,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [付款日记账] * 设置 [付款日记账]
*/ */
public void setJournalId(Long journalId){ public void setJournalId(Long journalId){
this.journalId = journalId ; //2 this.journalId = journalId ;
this.modify("journal_id",journalId); this.modify("journal_id",journalId);
} }
...@@ -389,7 +389,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -389,7 +389,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [收款银行账号] * 设置 [收款银行账号]
*/ */
public void setPartnerBankAccountId(Long partnerBankAccountId){ public void setPartnerBankAccountId(Long partnerBankAccountId){
this.partnerBankAccountId = partnerBankAccountId ; //2 this.partnerBankAccountId = partnerBankAccountId ;
this.modify("partner_bank_account_id",partnerBankAccountId); this.modify("partner_bank_account_id",partnerBankAccountId);
} }
...@@ -397,7 +397,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -397,7 +397,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [付款方法类型] * 设置 [付款方法类型]
*/ */
public void setPaymentMethodId(Long paymentMethodId){ public void setPaymentMethodId(Long paymentMethodId){
this.paymentMethodId = paymentMethodId ; //2 this.paymentMethodId = paymentMethodId ;
this.modify("payment_method_id",paymentMethodId); this.modify("payment_method_id",paymentMethodId);
} }
...@@ -405,7 +405,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -405,7 +405,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [业务伙伴] * 设置 [业务伙伴]
*/ */
public void setPartnerId(Long partnerId){ public void setPartnerId(Long partnerId){
this.partnerId = partnerId ; //2 this.partnerId = partnerId ;
this.modify("partner_id",partnerId); this.modify("partner_id",partnerId);
} }
...@@ -413,7 +413,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable { ...@@ -413,7 +413,7 @@ public class Account_abstract_payment extends EntityMP implements Serializable {
* 设置 [差异科目] * 设置 [差异科目]
*/ */
public void setWriteoffAccountId(Long writeoffAccountId){ public void setWriteoffAccountId(Long writeoffAccountId){
this.writeoffAccountId = writeoffAccountId ; //2 this.writeoffAccountId = writeoffAccountId ;
this.modify("writeoff_account_id",writeoffAccountId); this.modify("writeoff_account_id",writeoffAccountId);
} }
......
...@@ -108,7 +108,7 @@ public class Account_account extends EntityMP implements Serializable { ...@@ -108,7 +108,7 @@ public class Account_account extends EntityMP implements Serializable {
@TableField(value = "deprecated") @TableField(value = "deprecated")
@JSONField(name = "deprecated") @JSONField(name = "deprecated")
@JsonProperty("deprecated") @JsonProperty("deprecated")
private Boolean deprecated; private Object deprecated;
/** /**
* 显示名称 * 显示名称
*/ */
...@@ -131,7 +131,7 @@ public class Account_account extends EntityMP implements Serializable { ...@@ -131,7 +131,7 @@ public class Account_account extends EntityMP implements Serializable {
@TableField(value = "reconcile") @TableField(value = "reconcile")
@JSONField(name = "reconcile") @JSONField(name = "reconcile")
@JsonProperty("reconcile") @JsonProperty("reconcile")
private Boolean reconcile; private Object reconcile;
/** /**
* 标签 * 标签
*/ */
...@@ -313,7 +313,7 @@ public class Account_account extends EntityMP implements Serializable { ...@@ -313,7 +313,7 @@ public class Account_account extends EntityMP implements Serializable {
* 设置 [内部备注] * 设置 [内部备注]
*/ */
public void setNote(String note){ public void setNote(String note){
this.note = note ; //2 this.note = note ;
this.modify("note",note); this.modify("note",note);
} }
...@@ -321,15 +321,15 @@ public class Account_account extends EntityMP implements Serializable { ...@@ -321,15 +321,15 @@ public class Account_account extends EntityMP implements Serializable {
* 设置 [代码] * 设置 [代码]
*/ */
public void setCode(String code){ public void setCode(String code){
this.code = code ; //2 this.code = code ;
this.modify("code",code); this.modify("code",code);
} }
/** /**
* 设置 [废弃] * 设置 [废弃]
*/ */
public void setDeprecated(Boolean deprecated){ public void setDeprecated(Object deprecated){
this.deprecated = deprecated ; //2 this.deprecated = deprecated ;
this.modify("deprecated",deprecated); this.modify("deprecated",deprecated);
} }
...@@ -337,7 +337,7 @@ public class Account_account extends EntityMP implements Serializable { ...@@ -337,7 +337,7 @@ public class Account_account extends EntityMP implements Serializable {
* 设置 [最近的发票和付款匹配时间] * 设置 [最近的发票和付款匹配时间]
*/ */
public void setLastTimeEntriesChecked(Timestamp lastTimeEntriesChecked){ public void setLastTimeEntriesChecked(Timestamp lastTimeEntriesChecked){
this.lastTimeEntriesChecked = lastTimeEntriesChecked ; //2 this.lastTimeEntriesChecked = lastTimeEntriesChecked ;
this.modify("last_time_entries_checked",lastTimeEntriesChecked); this.modify("last_time_entries_checked",lastTimeEntriesChecked);
} }
...@@ -354,8 +354,8 @@ public class Account_account extends EntityMP implements Serializable { ...@@ -354,8 +354,8 @@ public class Account_account extends EntityMP implements Serializable {
/** /**
* 设置 [允许核销] * 设置 [允许核销]
*/ */
public void setReconcile(Boolean reconcile){ public void setReconcile(Object reconcile){
this.reconcile = reconcile ; //2 this.reconcile = reconcile ;
this.modify("reconcile",reconcile); this.modify("reconcile",reconcile);
} }
...@@ -363,7 +363,7 @@ public class Account_account extends EntityMP implements Serializable { ...@@ -363,7 +363,7 @@ public class Account_account extends EntityMP implements Serializable {
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -371,7 +371,7 @@ public class Account_account extends EntityMP implements Serializable { ...@@ -371,7 +371,7 @@ public class Account_account extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
...@@ -379,7 +379,7 @@ public class Account_account extends EntityMP implements Serializable { ...@@ -379,7 +379,7 @@ public class Account_account extends EntityMP implements Serializable {
* 设置 [组] * 设置 [组]
*/ */
public void setGroupId(Long groupId){ public void setGroupId(Long groupId){
this.groupId = groupId ; //2 this.groupId = groupId ;
this.modify("group_id",groupId); this.modify("group_id",groupId);
} }
...@@ -387,7 +387,7 @@ public class Account_account extends EntityMP implements Serializable { ...@@ -387,7 +387,7 @@ public class Account_account extends EntityMP implements Serializable {
* 设置 [类型] * 设置 [类型]
*/ */
public void setUserTypeId(Long userTypeId){ public void setUserTypeId(Long userTypeId){
this.userTypeId = userTypeId ; //2 this.userTypeId = userTypeId ;
this.modify("user_type_id",userTypeId); this.modify("user_type_id",userTypeId);
} }
...@@ -395,7 +395,7 @@ public class Account_account extends EntityMP implements Serializable { ...@@ -395,7 +395,7 @@ public class Account_account extends EntityMP implements Serializable {
* 设置 [科目币种] * 设置 [科目币种]
*/ */
public void setCurrencyId(Long currencyId){ public void setCurrencyId(Long currencyId){
this.currencyId = currencyId ; //2 this.currencyId = currencyId ;
this.modify("currency_id",currencyId); this.modify("currency_id",currencyId);
} }
......
...@@ -93,7 +93,7 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -93,7 +93,7 @@ public class Account_account_tag extends EntityMP implements Serializable {
@TableField(value = "active") @TableField(value = "active")
@JSONField(name = "active") @JSONField(name = "active")
@JsonProperty("active") @JsonProperty("active")
private Boolean active; private Object active;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -163,7 +163,7 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -163,7 +163,7 @@ public class Account_account_tag extends EntityMP implements Serializable {
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -171,15 +171,15 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -171,15 +171,15 @@ public class Account_account_tag extends EntityMP implements Serializable {
* 设置 [适用范围] * 设置 [适用范围]
*/ */
public void setApplicability(String applicability){ public void setApplicability(String applicability){
this.applicability = applicability ; //2 this.applicability = applicability ;
this.modify("applicability",applicability); this.modify("applicability",applicability);
} }
/** /**
* 设置 [有效] * 设置 [有效]
*/ */
public void setActive(Boolean active){ public void setActive(Object active){
this.active = active ; //2 this.active = active ;
this.modify("active",active); this.modify("active",active);
} }
...@@ -187,7 +187,7 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -187,7 +187,7 @@ public class Account_account_tag extends EntityMP implements Serializable {
* 设置 [颜色索引] * 设置 [颜色索引]
*/ */
public void setColor(Integer color){ public void setColor(Integer color){
this.color = color ; //2 this.color = color ;
this.modify("color",color); this.modify("color",color);
} }
......
...@@ -61,7 +61,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -61,7 +61,7 @@ public class Account_account_template extends EntityMP implements Serializable {
@TableField(value = "nocreate") @TableField(value = "nocreate")
@JSONField(name = "nocreate") @JSONField(name = "nocreate")
@JsonProperty("nocreate") @JsonProperty("nocreate")
private Boolean nocreate; private Object nocreate;
/** /**
* 默认税 * 默认税
*/ */
...@@ -130,7 +130,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -130,7 +130,7 @@ public class Account_account_template extends EntityMP implements Serializable {
@TableField(value = "reconcile") @TableField(value = "reconcile")
@JSONField(name = "reconcile") @JSONField(name = "reconcile")
@JsonProperty("reconcile") @JsonProperty("reconcile")
private Boolean reconcile; private Object reconcile;
/** /**
* 表模板 * 表模板
*/ */
...@@ -276,15 +276,15 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -276,15 +276,15 @@ public class Account_account_template extends EntityMP implements Serializable {
* 设置 [代码] * 设置 [代码]
*/ */
public void setCode(String code){ public void setCode(String code){
this.code = code ; //2 this.code = code ;
this.modify("code",code); this.modify("code",code);
} }
/** /**
* 设置 [选项创建] * 设置 [选项创建]
*/ */
public void setNocreate(Boolean nocreate){ public void setNocreate(Object nocreate){
this.nocreate = nocreate ; //2 this.nocreate = nocreate ;
this.modify("nocreate",nocreate); this.modify("nocreate",nocreate);
} }
...@@ -292,7 +292,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -292,7 +292,7 @@ public class Account_account_template extends EntityMP implements Serializable {
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -300,15 +300,15 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -300,15 +300,15 @@ public class Account_account_template extends EntityMP implements Serializable {
* 设置 [备注] * 设置 [备注]
*/ */
public void setNote(String note){ public void setNote(String note){
this.note = note ; //2 this.note = note ;
this.modify("note",note); this.modify("note",note);
} }
/** /**
* 设置 [允许发票和付款匹配] * 设置 [允许发票和付款匹配]
*/ */
public void setReconcile(Boolean reconcile){ public void setReconcile(Object reconcile){
this.reconcile = reconcile ; //2 this.reconcile = reconcile ;
this.modify("reconcile",reconcile); this.modify("reconcile",reconcile);
} }
...@@ -316,7 +316,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -316,7 +316,7 @@ public class Account_account_template extends EntityMP implements Serializable {
* 设置 [表模板] * 设置 [表模板]
*/ */
public void setChartTemplateId(Long chartTemplateId){ public void setChartTemplateId(Long chartTemplateId){
this.chartTemplateId = chartTemplateId ; //2 this.chartTemplateId = chartTemplateId ;
this.modify("chart_template_id",chartTemplateId); this.modify("chart_template_id",chartTemplateId);
} }
...@@ -324,7 +324,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -324,7 +324,7 @@ public class Account_account_template extends EntityMP implements Serializable {
* 设置 [科目币种] * 设置 [科目币种]
*/ */
public void setCurrencyId(Long currencyId){ public void setCurrencyId(Long currencyId){
this.currencyId = currencyId ; //2 this.currencyId = currencyId ;
this.modify("currency_id",currencyId); this.modify("currency_id",currencyId);
} }
...@@ -332,7 +332,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -332,7 +332,7 @@ public class Account_account_template extends EntityMP implements Serializable {
* 设置 [类型] * 设置 [类型]
*/ */
public void setUserTypeId(Long userTypeId){ public void setUserTypeId(Long userTypeId){
this.userTypeId = userTypeId ; //2 this.userTypeId = userTypeId ;
this.modify("user_type_id",userTypeId); this.modify("user_type_id",userTypeId);
} }
...@@ -340,7 +340,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -340,7 +340,7 @@ public class Account_account_template extends EntityMP implements Serializable {
* 设置 [组] * 设置 [组]
*/ */
public void setGroupId(Long groupId){ public void setGroupId(Long groupId){
this.groupId = groupId ; //2 this.groupId = groupId ;
this.modify("group_id",groupId); this.modify("group_id",groupId);
} }
......
...@@ -103,7 +103,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -103,7 +103,7 @@ public class Account_account_type extends EntityMP implements Serializable {
@TableField(value = "include_initial_balance") @TableField(value = "include_initial_balance")
@JSONField(name = "include_initial_balance") @JSONField(name = "include_initial_balance")
@JsonProperty("include_initial_balance") @JsonProperty("include_initial_balance")
private Boolean includeInitialBalance; private Object includeInitialBalance;
/** /**
* 科目类型 * 科目类型
*/ */
...@@ -172,7 +172,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -172,7 +172,7 @@ public class Account_account_type extends EntityMP implements Serializable {
* 设置 [类型] * 设置 [类型]
*/ */
public void setType(String type){ public void setType(String type){
this.type = type ; //2 this.type = type ;
this.modify("type",type); this.modify("type",type);
} }
...@@ -180,15 +180,15 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -180,15 +180,15 @@ public class Account_account_type extends EntityMP implements Serializable {
* 设置 [说明] * 设置 [说明]
*/ */
public void setNote(String note){ public void setNote(String note){
this.note = note ; //2 this.note = note ;
this.modify("note",note); this.modify("note",note);
} }
/** /**
* 设置 [将科目余额转移] * 设置 [将科目余额转移]
*/ */
public void setIncludeInitialBalance(Boolean includeInitialBalance){ public void setIncludeInitialBalance(Object includeInitialBalance){
this.includeInitialBalance = includeInitialBalance ; //2 this.includeInitialBalance = includeInitialBalance ;
this.modify("include_initial_balance",includeInitialBalance); this.modify("include_initial_balance",includeInitialBalance);
} }
...@@ -196,7 +196,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -196,7 +196,7 @@ public class Account_account_type extends EntityMP implements Serializable {
* 设置 [科目类型] * 设置 [科目类型]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -204,7 +204,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -204,7 +204,7 @@ public class Account_account_type extends EntityMP implements Serializable {
* 设置 [内部群组] * 设置 [内部群组]
*/ */
public void setInternalGroup(String internalGroup){ public void setInternalGroup(String internalGroup){
this.internalGroup = internalGroup ; //2 this.internalGroup = internalGroup ;
this.modify("internal_group",internalGroup); this.modify("internal_group",internalGroup);
} }
......
...@@ -97,14 +97,14 @@ public class Account_analytic_account extends EntityMP implements Serializable { ...@@ -97,14 +97,14 @@ public class Account_analytic_account extends EntityMP implements Serializable {
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "message_needaction") @JSONField(name = "message_needaction")
@JsonProperty("message_needaction") @JsonProperty("message_needaction")
private Boolean messageNeedaction; private Object messageNeedaction;
/** /**
* 是关注者 * 是关注者
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "message_is_follower") @JSONField(name = "message_is_follower")
@JsonProperty("message_is_follower") @JsonProperty("message_is_follower")
private Boolean messageIsFollower; private Object messageIsFollower;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -194,7 +194,7 @@ public class Account_analytic_account extends EntityMP implements Serializable { ...@@ -194,7 +194,7 @@ public class Account_analytic_account extends EntityMP implements Serializable {
@TableField(value = "active") @TableField(value = "active")
@JSONField(name = "active") @JSONField(name = "active")
@JsonProperty("active") @JsonProperty("active")
private Boolean active; private Object active;
/** /**
* 未读消息计数器 * 未读消息计数器
*/ */
...@@ -222,14 +222,14 @@ public class Account_analytic_account extends EntityMP implements Serializable { ...@@ -222,14 +222,14 @@ public class Account_analytic_account extends EntityMP implements Serializable {
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "message_unread") @JSONField(name = "message_unread")
@JsonProperty("message_unread") @JsonProperty("message_unread")
private Boolean messageUnread; private Object messageUnread;
/** /**
* 消息递送错误 * 消息递送错误
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "message_has_error") @JSONField(name = "message_has_error")
@JsonProperty("message_has_error") @JsonProperty("message_has_error")
private Boolean messageHasError; private Object messageHasError;
/** /**
* 创建人 * 创建人
*/ */
...@@ -359,7 +359,7 @@ public class Account_analytic_account extends EntityMP implements Serializable { ...@@ -359,7 +359,7 @@ public class Account_analytic_account extends EntityMP implements Serializable {
* 设置 [参考] * 设置 [参考]
*/ */
public void setCode(String code){ public void setCode(String code){
this.code = code ; //2 this.code = code ;
this.modify("code",code); this.modify("code",code);
} }
...@@ -367,15 +367,15 @@ public class Account_analytic_account extends EntityMP implements Serializable { ...@@ -367,15 +367,15 @@ public class Account_analytic_account extends EntityMP implements Serializable {
* 设置 [附件] * 设置 [附件]
*/ */
public void setMessageMainAttachmentId(Integer messageMainAttachmentId){ public void setMessageMainAttachmentId(Integer messageMainAttachmentId){
this.messageMainAttachmentId = messageMainAttachmentId ; //2 this.messageMainAttachmentId = messageMainAttachmentId ;
this.modify("message_main_attachment_id",messageMainAttachmentId); this.modify("message_main_attachment_id",messageMainAttachmentId);
} }
/** /**
* 设置 [有效] * 设置 [有效]
*/ */
public void setActive(Boolean active){ public void setActive(Object active){
this.active = active ; //2 this.active = active ;
this.modify("active",active); this.modify("active",active);
} }
...@@ -383,7 +383,7 @@ public class Account_analytic_account extends EntityMP implements Serializable { ...@@ -383,7 +383,7 @@ public class Account_analytic_account extends EntityMP implements Serializable {
* 设置 [分析账户] * 设置 [分析账户]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -391,7 +391,7 @@ public class Account_analytic_account extends EntityMP implements Serializable { ...@@ -391,7 +391,7 @@ public class Account_analytic_account extends EntityMP implements Serializable {
* 设置 [组] * 设置 [组]
*/ */
public void setGroupId(Long groupId){ public void setGroupId(Long groupId){
this.groupId = groupId ; //2 this.groupId = groupId ;
this.modify("group_id",groupId); this.modify("group_id",groupId);
} }
...@@ -399,7 +399,7 @@ public class Account_analytic_account extends EntityMP implements Serializable { ...@@ -399,7 +399,7 @@ public class Account_analytic_account extends EntityMP implements Serializable {
* 设置 [客户] * 设置 [客户]
*/ */
public void setPartnerId(Long partnerId){ public void setPartnerId(Long partnerId){
this.partnerId = partnerId ; //2 this.partnerId = partnerId ;
this.modify("partner_id",partnerId); this.modify("partner_id",partnerId);
} }
...@@ -407,7 +407,7 @@ public class Account_analytic_account extends EntityMP implements Serializable { ...@@ -407,7 +407,7 @@ public class Account_analytic_account extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
......
...@@ -188,7 +188,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -188,7 +188,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
* 设置 [百分比] * 设置 [百分比]
*/ */
public void setPercentage(Double percentage){ public void setPercentage(Double percentage){
this.percentage = percentage ; //2 this.percentage = percentage ;
this.modify("percentage",percentage); this.modify("percentage",percentage);
} }
...@@ -196,7 +196,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -196,7 +196,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
* 设置 [上级标签] * 设置 [上级标签]
*/ */
public void setTagId(Long tagId){ public void setTagId(Long tagId){
this.tagId = tagId ; //2 this.tagId = tagId ;
this.modify("tag_id",tagId); this.modify("tag_id",tagId);
} }
...@@ -204,7 +204,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -204,7 +204,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
* 设置 [分析账户] * 设置 [分析账户]
*/ */
public void setAccountId(Long accountId){ public void setAccountId(Long accountId){
this.accountId = accountId ; //2 this.accountId = accountId ;
this.modify("account_id",accountId); this.modify("account_id",accountId);
} }
......
...@@ -218,7 +218,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -218,7 +218,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -226,7 +226,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -226,7 +226,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
* 设置 [父级路径] * 设置 [父级路径]
*/ */
public void setParentPath(String parentPath){ public void setParentPath(String parentPath){
this.parentPath = parentPath ; //2 this.parentPath = parentPath ;
this.modify("parent_path",parentPath); this.modify("parent_path",parentPath);
} }
...@@ -234,7 +234,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -234,7 +234,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
* 设置 [完整名称] * 设置 [完整名称]
*/ */
public void setCompleteName(String completeName){ public void setCompleteName(String completeName){
this.completeName = completeName ; //2 this.completeName = completeName ;
this.modify("complete_name",completeName); this.modify("complete_name",completeName);
} }
...@@ -242,7 +242,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -242,7 +242,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
* 设置 [说明] * 设置 [说明]
*/ */
public void setDescription(String description){ public void setDescription(String description){
this.description = description ; //2 this.description = description ;
this.modify("description",description); this.modify("description",description);
} }
...@@ -250,7 +250,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -250,7 +250,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
...@@ -258,7 +258,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -258,7 +258,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
* 设置 [上级] * 设置 [上级]
*/ */
public void setParentId(Long parentId){ public void setParentId(Long parentId){
this.parentId = parentId ; //2 this.parentId = parentId ;
this.modify("parent_id",parentId); this.modify("parent_id",parentId);
} }
......
...@@ -439,7 +439,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -439,7 +439,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [代码] * 设置 [代码]
*/ */
public void setCode(String code){ public void setCode(String code){
this.code = code ; //2 this.code = code ;
this.modify("code",code); this.modify("code",code);
} }
...@@ -447,7 +447,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -447,7 +447,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [数量] * 设置 [数量]
*/ */
public void setUnitAmount(Double unitAmount){ public void setUnitAmount(Double unitAmount){
this.unitAmount = unitAmount ; //2 this.unitAmount = unitAmount ;
this.modify("unit_amount",unitAmount); this.modify("unit_amount",unitAmount);
} }
...@@ -455,7 +455,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -455,7 +455,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [日期] * 设置 [日期]
*/ */
public void setDate(Timestamp date){ public void setDate(Timestamp date){
this.date = date ; //2 this.date = date ;
this.modify("date",date); this.modify("date",date);
} }
...@@ -473,7 +473,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -473,7 +473,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [说明] * 设置 [说明]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -481,7 +481,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -481,7 +481,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [参考.] * 设置 [参考.]
*/ */
public void setRef(String ref){ public void setRef(String ref){
this.ref = ref ; //2 this.ref = ref ;
this.modify("ref",ref); this.modify("ref",ref);
} }
...@@ -489,7 +489,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -489,7 +489,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [金额] * 设置 [金额]
*/ */
public void setAmount(BigDecimal amount){ public void setAmount(BigDecimal amount){
this.amount = amount ; //2 this.amount = amount ;
this.modify("amount",amount); this.modify("amount",amount);
} }
...@@ -497,7 +497,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -497,7 +497,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [销售订单项目] * 设置 [销售订单项目]
*/ */
public void setSoLine(Long soLine){ public void setSoLine(Long soLine){
this.soLine = soLine ; //2 this.soLine = soLine ;
this.modify("so_line",soLine); this.modify("so_line",soLine);
} }
...@@ -505,7 +505,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -505,7 +505,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [财务会计] * 设置 [财务会计]
*/ */
public void setGeneralAccountId(Long generalAccountId){ public void setGeneralAccountId(Long generalAccountId){
this.generalAccountId = generalAccountId ; //2 this.generalAccountId = generalAccountId ;
this.modify("general_account_id",generalAccountId); this.modify("general_account_id",generalAccountId);
} }
...@@ -513,7 +513,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -513,7 +513,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [计量单位] * 设置 [计量单位]
*/ */
public void setProductUomId(Long productUomId){ public void setProductUomId(Long productUomId){
this.productUomId = productUomId ; //2 this.productUomId = productUomId ;
this.modify("product_uom_id",productUomId); this.modify("product_uom_id",productUomId);
} }
...@@ -521,7 +521,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -521,7 +521,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [业务伙伴] * 设置 [业务伙伴]
*/ */
public void setPartnerId(Long partnerId){ public void setPartnerId(Long partnerId){
this.partnerId = partnerId ; //2 this.partnerId = partnerId ;
this.modify("partner_id",partnerId); this.modify("partner_id",partnerId);
} }
...@@ -529,7 +529,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -529,7 +529,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [产品] * 设置 [产品]
*/ */
public void setProductId(Long productId){ public void setProductId(Long productId){
this.productId = productId ; //2 this.productId = productId ;
this.modify("product_id",productId); this.modify("product_id",productId);
} }
...@@ -537,7 +537,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -537,7 +537,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
...@@ -545,7 +545,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -545,7 +545,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [分析账户] * 设置 [分析账户]
*/ */
public void setAccountId(Long accountId){ public void setAccountId(Long accountId){
this.accountId = accountId ; //2 this.accountId = accountId ;
this.modify("account_id",accountId); this.modify("account_id",accountId);
} }
...@@ -553,7 +553,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -553,7 +553,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [币种] * 设置 [币种]
*/ */
public void setCurrencyId(Long currencyId){ public void setCurrencyId(Long currencyId){
this.currencyId = currencyId ; //2 this.currencyId = currencyId ;
this.modify("currency_id",currencyId); this.modify("currency_id",currencyId);
} }
...@@ -561,7 +561,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -561,7 +561,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [组] * 设置 [组]
*/ */
public void setGroupId(Long groupId){ public void setGroupId(Long groupId){
this.groupId = groupId ; //2 this.groupId = groupId ;
this.modify("group_id",groupId); this.modify("group_id",groupId);
} }
...@@ -569,7 +569,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -569,7 +569,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [用户] * 设置 [用户]
*/ */
public void setUserId(Long userId){ public void setUserId(Long userId){
this.userId = userId ; //2 this.userId = userId ;
this.modify("user_id",userId); this.modify("user_id",userId);
} }
...@@ -577,7 +577,7 @@ public class Account_analytic_line extends EntityMP implements Serializable { ...@@ -577,7 +577,7 @@ public class Account_analytic_line extends EntityMP implements Serializable {
* 设置 [日记账项目] * 设置 [日记账项目]
*/ */
public void setMoveId(Long moveId){ public void setMoveId(Long moveId){
this.moveId = moveId ; //2 this.moveId = moveId ;
this.modify("move_id",moveId); this.modify("move_id",moveId);
} }
......
...@@ -63,7 +63,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -63,7 +63,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
@TableField(value = "active_analytic_distribution") @TableField(value = "active_analytic_distribution")
@JSONField(name = "active_analytic_distribution") @JSONField(name = "active_analytic_distribution")
@JsonProperty("active_analytic_distribution") @JsonProperty("active_analytic_distribution")
private Boolean activeAnalyticDistribution; private Object activeAnalyticDistribution;
/** /**
* 分析标签 * 分析标签
*/ */
...@@ -77,7 +77,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -77,7 +77,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
@TableField(value = "active") @TableField(value = "active")
@JSONField(name = "active") @JSONField(name = "active")
@JsonProperty("active") @JsonProperty("active")
private Boolean active; private Object active;
/** /**
* 最后更新时间 * 最后更新时间
*/ */
...@@ -193,8 +193,8 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -193,8 +193,8 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
/** /**
* 设置 [分析分配] * 设置 [分析分配]
*/ */
public void setActiveAnalyticDistribution(Boolean activeAnalyticDistribution){ public void setActiveAnalyticDistribution(Object activeAnalyticDistribution){
this.activeAnalyticDistribution = activeAnalyticDistribution ; //2 this.activeAnalyticDistribution = activeAnalyticDistribution ;
this.modify("active_analytic_distribution",activeAnalyticDistribution); this.modify("active_analytic_distribution",activeAnalyticDistribution);
} }
...@@ -202,15 +202,15 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -202,15 +202,15 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
* 设置 [分析标签] * 设置 [分析标签]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
/** /**
* 设置 [有效] * 设置 [有效]
*/ */
public void setActive(Boolean active){ public void setActive(Object active){
this.active = active ; //2 this.active = active ;
this.modify("active",active); this.modify("active",active);
} }
...@@ -218,7 +218,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -218,7 +218,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
* 设置 [颜色索引] * 设置 [颜色索引]
*/ */
public void setColor(Integer color){ public void setColor(Integer color){
this.color = color ; //2 this.color = color ;
this.modify("color",color); this.modify("color",color);
} }
...@@ -226,7 +226,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -226,7 +226,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
......
...@@ -139,14 +139,14 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -139,14 +139,14 @@ public class Account_bank_statement extends EntityMP implements Serializable {
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "all_lines_reconciled") @JSONField(name = "all_lines_reconciled")
@JsonProperty("all_lines_reconciled") @JsonProperty("all_lines_reconciled")
private Boolean allLinesReconciled; private Object allLinesReconciled;
/** /**
* 是关注者 * 是关注者
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "message_is_follower") @JSONField(name = "message_is_follower")
@JsonProperty("message_is_follower") @JsonProperty("message_is_follower")
private Boolean messageIsFollower; private Object messageIsFollower;
/** /**
* 网站信息 * 网站信息
*/ */
...@@ -181,14 +181,14 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -181,14 +181,14 @@ public class Account_bank_statement extends EntityMP implements Serializable {
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "message_has_error") @JSONField(name = "message_has_error")
@JsonProperty("message_has_error") @JsonProperty("message_has_error")
private Boolean messageHasError; private Object messageHasError;
/** /**
* 未读消息 * 未读消息
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "message_unread") @JSONField(name = "message_unread")
@JsonProperty("message_unread") @JsonProperty("message_unread")
private Boolean messageUnread; private Object messageUnread;
/** /**
* 凭证明细数 * 凭证明细数
*/ */
...@@ -224,7 +224,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -224,7 +224,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "is_difference_zero") @JSONField(name = "is_difference_zero")
@JsonProperty("is_difference_zero") @JsonProperty("is_difference_zero")
private Boolean isDifferenceZero; private Object isDifferenceZero;
/** /**
* 未读消息计数器 * 未读消息计数器
*/ */
...@@ -255,7 +255,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -255,7 +255,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "message_needaction") @JSONField(name = "message_needaction")
@JsonProperty("message_needaction") @JsonProperty("message_needaction")
private Boolean messageNeedaction; private Object messageNeedaction;
/** /**
* 需要一个动作消息的编码 * 需要一个动作消息的编码
*/ */
...@@ -485,7 +485,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -485,7 +485,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [参考] * 设置 [参考]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -493,7 +493,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -493,7 +493,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [结束余额] * 设置 [结束余额]
*/ */
public void setBalanceEndReal(BigDecimal balanceEndReal){ public void setBalanceEndReal(BigDecimal balanceEndReal){
this.balanceEndReal = balanceEndReal ; //2 this.balanceEndReal = balanceEndReal ;
this.modify("balance_end_real",balanceEndReal); this.modify("balance_end_real",balanceEndReal);
} }
...@@ -501,7 +501,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -501,7 +501,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [会话] * 设置 [会话]
*/ */
public void setPosSessionId(Integer posSessionId){ public void setPosSessionId(Integer posSessionId){
this.posSessionId = posSessionId ; //2 this.posSessionId = posSessionId ;
this.modify("pos_session_id",posSessionId); this.modify("pos_session_id",posSessionId);
} }
...@@ -509,7 +509,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -509,7 +509,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [计算余额] * 设置 [计算余额]
*/ */
public void setBalanceEnd(BigDecimal balanceEnd){ public void setBalanceEnd(BigDecimal balanceEnd){
this.balanceEnd = balanceEnd ; //2 this.balanceEnd = balanceEnd ;
this.modify("balance_end",balanceEnd); this.modify("balance_end",balanceEnd);
} }
...@@ -517,7 +517,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -517,7 +517,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [交易小计] * 设置 [交易小计]
*/ */
public void setTotalEntryEncoding(BigDecimal totalEntryEncoding){ public void setTotalEntryEncoding(BigDecimal totalEntryEncoding){
this.totalEntryEncoding = totalEntryEncoding ; //2 this.totalEntryEncoding = totalEntryEncoding ;
this.modify("total_entry_encoding",totalEntryEncoding); this.modify("total_entry_encoding",totalEntryEncoding);
} }
...@@ -525,7 +525,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -525,7 +525,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [关闭在] * 设置 [关闭在]
*/ */
public void setDateDone(Timestamp dateDone){ public void setDateDone(Timestamp dateDone){
this.dateDone = dateDone ; //2 this.dateDone = dateDone ;
this.modify("date_done",dateDone); this.modify("date_done",dateDone);
} }
...@@ -543,7 +543,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -543,7 +543,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [状态] * 设置 [状态]
*/ */
public void setState(String state){ public void setState(String state){
this.state = state ; //2 this.state = state ;
this.modify("state",state); this.modify("state",state);
} }
...@@ -551,7 +551,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -551,7 +551,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [日期] * 设置 [日期]
*/ */
public void setDate(Timestamp date){ public void setDate(Timestamp date){
this.date = date ; //2 this.date = date ;
this.modify("date",date); this.modify("date",date);
} }
...@@ -569,7 +569,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -569,7 +569,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [附件] * 设置 [附件]
*/ */
public void setMessageMainAttachmentId(Integer messageMainAttachmentId){ public void setMessageMainAttachmentId(Integer messageMainAttachmentId){
this.messageMainAttachmentId = messageMainAttachmentId ; //2 this.messageMainAttachmentId = messageMainAttachmentId ;
this.modify("message_main_attachment_id",messageMainAttachmentId); this.modify("message_main_attachment_id",messageMainAttachmentId);
} }
...@@ -577,7 +577,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -577,7 +577,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [差异] * 设置 [差异]
*/ */
public void setDifference(BigDecimal difference){ public void setDifference(BigDecimal difference){
this.difference = difference ; //2 this.difference = difference ;
this.modify("difference",difference); this.modify("difference",difference);
} }
...@@ -585,7 +585,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -585,7 +585,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [外部引用] * 设置 [外部引用]
*/ */
public void setReference(String reference){ public void setReference(String reference){
this.reference = reference ; //2 this.reference = reference ;
this.modify("reference",reference); this.modify("reference",reference);
} }
...@@ -593,7 +593,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -593,7 +593,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [起始余额] * 设置 [起始余额]
*/ */
public void setBalanceStart(BigDecimal balanceStart){ public void setBalanceStart(BigDecimal balanceStart){
this.balanceStart = balanceStart ; //2 this.balanceStart = balanceStart ;
this.modify("balance_start",balanceStart); this.modify("balance_start",balanceStart);
} }
...@@ -601,7 +601,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -601,7 +601,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [会计日期] * 设置 [会计日期]
*/ */
public void setAccountingDate(Timestamp accountingDate){ public void setAccountingDate(Timestamp accountingDate){
this.accountingDate = accountingDate ; //2 this.accountingDate = accountingDate ;
this.modify("accounting_date",accountingDate); this.modify("accounting_date",accountingDate);
} }
...@@ -619,7 +619,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -619,7 +619,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [开始钱箱] * 设置 [开始钱箱]
*/ */
public void setCashboxStartId(Long cashboxStartId){ public void setCashboxStartId(Long cashboxStartId){
this.cashboxStartId = cashboxStartId ; //2 this.cashboxStartId = cashboxStartId ;
this.modify("cashbox_start_id",cashboxStartId); this.modify("cashbox_start_id",cashboxStartId);
} }
...@@ -627,7 +627,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -627,7 +627,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [日记账] * 设置 [日记账]
*/ */
public void setJournalId(Long journalId){ public void setJournalId(Long journalId){
this.journalId = journalId ; //2 this.journalId = journalId ;
this.modify("journal_id",journalId); this.modify("journal_id",journalId);
} }
...@@ -635,7 +635,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -635,7 +635,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
...@@ -643,7 +643,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -643,7 +643,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [关闭钱箱] * 设置 [关闭钱箱]
*/ */
public void setCashboxEndId(Long cashboxEndId){ public void setCashboxEndId(Long cashboxEndId){
this.cashboxEndId = cashboxEndId ; //2 this.cashboxEndId = cashboxEndId ;
this.modify("cashbox_end_id",cashboxEndId); this.modify("cashbox_end_id",cashboxEndId);
} }
...@@ -651,7 +651,7 @@ public class Account_bank_statement extends EntityMP implements Serializable { ...@@ -651,7 +651,7 @@ public class Account_bank_statement extends EntityMP implements Serializable {
* 设置 [负责人] * 设置 [负责人]
*/ */
public void setUserId(Long userId){ public void setUserId(Long userId){
this.userId = userId ; //2 this.userId = userId ;
this.modify("user_id",userId); this.modify("user_id",userId);
} }
......
...@@ -149,7 +149,7 @@ public class Account_bank_statement_import extends EntityMP implements Serializa ...@@ -149,7 +149,7 @@ public class Account_bank_statement_import extends EntityMP implements Serializa
* 设置 [文件名] * 设置 [文件名]
*/ */
public void setFilename(String filename){ public void setFilename(String filename){
this.filename = filename ; //2 this.filename = filename ;
this.modify("filename",filename); this.modify("filename",filename);
} }
......
...@@ -417,7 +417,7 @@ public class Account_bank_statement_import_journal_creation extends EntityMP imp ...@@ -417,7 +417,7 @@ public class Account_bank_statement_import_journal_creation extends EntityMP imp
* 设置 [日记账] * 设置 [日记账]
*/ */
public void setJournalId(Long journalId){ public void setJournalId(Long journalId){
this.journalId = journalId ; //2 this.journalId = journalId ;
this.modify("journal_id",journalId); this.modify("journal_id",journalId);
} }
......
...@@ -401,7 +401,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -401,7 +401,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [合作伙伴名称] * 设置 [合作伙伴名称]
*/ */
public void setPartnerName(String partnerName){ public void setPartnerName(String partnerName){
this.partnerName = partnerName ; //2 this.partnerName = partnerName ;
this.modify("partner_name",partnerName); this.modify("partner_name",partnerName);
} }
...@@ -409,7 +409,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -409,7 +409,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [序号] * 设置 [序号]
*/ */
public void setSequence(Integer sequence){ public void setSequence(Integer sequence){
this.sequence = sequence ; //2 this.sequence = sequence ;
this.modify("sequence",sequence); this.modify("sequence",sequence);
} }
...@@ -417,7 +417,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -417,7 +417,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [金额] * 设置 [金额]
*/ */
public void setAmount(BigDecimal amount){ public void setAmount(BigDecimal amount){
this.amount = amount ; //2 this.amount = amount ;
this.modify("amount",amount); this.modify("amount",amount);
} }
...@@ -425,7 +425,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -425,7 +425,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [银行账户号码] * 设置 [银行账户号码]
*/ */
public void setAccountNumber(String accountNumber){ public void setAccountNumber(String accountNumber){
this.accountNumber = accountNumber ; //2 this.accountNumber = accountNumber ;
this.modify("account_number",accountNumber); this.modify("account_number",accountNumber);
} }
...@@ -433,7 +433,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -433,7 +433,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [参考] * 设置 [参考]
*/ */
public void setRef(String ref){ public void setRef(String ref){
this.ref = ref ; //2 this.ref = ref ;
this.modify("ref",ref); this.modify("ref",ref);
} }
...@@ -441,7 +441,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -441,7 +441,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [备注] * 设置 [备注]
*/ */
public void setNote(String note){ public void setNote(String note){
this.note = note ; //2 this.note = note ;
this.modify("note",note); this.modify("note",note);
} }
...@@ -449,7 +449,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -449,7 +449,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [标签] * 设置 [标签]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -457,7 +457,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -457,7 +457,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [日记账分录名称] * 设置 [日记账分录名称]
*/ */
public void setMoveName(String moveName){ public void setMoveName(String moveName){
this.moveName = moveName ; //2 this.moveName = moveName ;
this.modify("move_name",moveName); this.modify("move_name",moveName);
} }
...@@ -465,7 +465,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -465,7 +465,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [导入ID] * 设置 [导入ID]
*/ */
public void setUniqueImportId(String uniqueImportId){ public void setUniqueImportId(String uniqueImportId){
this.uniqueImportId = uniqueImportId ; //2 this.uniqueImportId = uniqueImportId ;
this.modify("unique_import_id",uniqueImportId); this.modify("unique_import_id",uniqueImportId);
} }
...@@ -473,7 +473,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -473,7 +473,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [日期] * 设置 [日期]
*/ */
public void setDate(Timestamp date){ public void setDate(Timestamp date){
this.date = date ; //2 this.date = date ;
this.modify("date",date); this.modify("date",date);
} }
...@@ -491,7 +491,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -491,7 +491,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [POS报表] * 设置 [POS报表]
*/ */
public void setPosStatementId(Integer posStatementId){ public void setPosStatementId(Integer posStatementId){
this.posStatementId = posStatementId ; //2 this.posStatementId = posStatementId ;
this.modify("pos_statement_id",posStatementId); this.modify("pos_statement_id",posStatementId);
} }
...@@ -499,7 +499,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -499,7 +499,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [货币金额] * 设置 [货币金额]
*/ */
public void setAmountCurrency(BigDecimal amountCurrency){ public void setAmountCurrency(BigDecimal amountCurrency){
this.amountCurrency = amountCurrency ; //2 this.amountCurrency = amountCurrency ;
this.modify("amount_currency",amountCurrency); this.modify("amount_currency",amountCurrency);
} }
...@@ -507,7 +507,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -507,7 +507,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [对方科目] * 设置 [对方科目]
*/ */
public void setAccountId(Long accountId){ public void setAccountId(Long accountId){
this.accountId = accountId ; //2 this.accountId = accountId ;
this.modify("account_id",accountId); this.modify("account_id",accountId);
} }
...@@ -515,7 +515,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -515,7 +515,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
...@@ -523,7 +523,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -523,7 +523,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [币种] * 设置 [币种]
*/ */
public void setCurrencyId(Long currencyId){ public void setCurrencyId(Long currencyId){
this.currencyId = currencyId ; //2 this.currencyId = currencyId ;
this.modify("currency_id",currencyId); this.modify("currency_id",currencyId);
} }
...@@ -531,7 +531,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -531,7 +531,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [业务伙伴] * 设置 [业务伙伴]
*/ */
public void setPartnerId(Long partnerId){ public void setPartnerId(Long partnerId){
this.partnerId = partnerId ; //2 this.partnerId = partnerId ;
this.modify("partner_id",partnerId); this.modify("partner_id",partnerId);
} }
...@@ -539,7 +539,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -539,7 +539,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [银行账户] * 设置 [银行账户]
*/ */
public void setBankAccountId(Long bankAccountId){ public void setBankAccountId(Long bankAccountId){
this.bankAccountId = bankAccountId ; //2 this.bankAccountId = bankAccountId ;
this.modify("bank_account_id",bankAccountId); this.modify("bank_account_id",bankAccountId);
} }
...@@ -547,7 +547,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -547,7 +547,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [日记账] * 设置 [日记账]
*/ */
public void setJournalId(Long journalId){ public void setJournalId(Long journalId){
this.journalId = journalId ; //2 this.journalId = journalId ;
this.modify("journal_id",journalId); this.modify("journal_id",journalId);
} }
...@@ -555,7 +555,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl ...@@ -555,7 +555,7 @@ public class Account_bank_statement_line extends EntityMP implements Serializabl
* 设置 [报告] * 设置 [报告]
*/ */
public void setStatementId(Long statementId){ public void setStatementId(Long statementId){
this.statementId = statementId ; //2 this.statementId = statementId ;
this.modify("statement_id",statementId); this.modify("statement_id",statementId);
} }
......
...@@ -187,7 +187,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -187,7 +187,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
* 设置 [舍入方法] * 设置 [舍入方法]
*/ */
public void setRoundingMethod(String roundingMethod){ public void setRoundingMethod(String roundingMethod){
this.roundingMethod = roundingMethod ; //2 this.roundingMethod = roundingMethod ;
this.modify("rounding_method",roundingMethod); this.modify("rounding_method",roundingMethod);
} }
...@@ -195,7 +195,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -195,7 +195,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
* 设置 [舍入策略] * 设置 [舍入策略]
*/ */
public void setStrategy(String strategy){ public void setStrategy(String strategy){
this.strategy = strategy ; //2 this.strategy = strategy ;
this.modify("strategy",strategy); this.modify("strategy",strategy);
} }
...@@ -203,7 +203,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -203,7 +203,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -211,7 +211,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -211,7 +211,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
* 设置 [舍入精度] * 设置 [舍入精度]
*/ */
public void setRounding(Double rounding){ public void setRounding(Double rounding){
this.rounding = rounding ; //2 this.rounding = rounding ;
this.modify("rounding",rounding); this.modify("rounding",rounding);
} }
...@@ -219,7 +219,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -219,7 +219,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
* 设置 [科目] * 设置 [科目]
*/ */
public void setAccountId(Long accountId){ public void setAccountId(Long accountId){
this.accountId = accountId ; //2 this.accountId = accountId ;
this.modify("account_id",accountId); this.modify("account_id",accountId);
} }
......
...@@ -181,7 +181,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -181,7 +181,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
* 设置 [在开业或结束这个销售点的余额时,默认情况下使用这个钱箱行] * 设置 [在开业或结束这个销售点的余额时,默认情况下使用这个钱箱行]
*/ */
public void setDefaultPosId(Integer defaultPosId){ public void setDefaultPosId(Integer defaultPosId){
this.defaultPosId = defaultPosId ; //2 this.defaultPosId = defaultPosId ;
this.modify("default_pos_id",defaultPosId); this.modify("default_pos_id",defaultPosId);
} }
...@@ -189,7 +189,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -189,7 +189,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
* 设置 [硬币/账单 价值] * 设置 [硬币/账单 价值]
*/ */
public void setCoinValue(Double coinValue){ public void setCoinValue(Double coinValue){
this.coinValue = coinValue ; //2 this.coinValue = coinValue ;
this.modify("coin_value",coinValue); this.modify("coin_value",coinValue);
} }
...@@ -197,7 +197,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -197,7 +197,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
* 设置 [货币和账单编号] * 设置 [货币和账单编号]
*/ */
public void setNumber(Integer number){ public void setNumber(Integer number){
this.number = number ; //2 this.number = number ;
this.modify("number",number); this.modify("number",number);
} }
...@@ -205,7 +205,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -205,7 +205,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
* 设置 [钱箱] * 设置 [钱箱]
*/ */
public void setCashboxId(Long cashboxId){ public void setCashboxId(Long cashboxId){
this.cashboxId = cashboxId ; //2 this.cashboxId = cashboxId ;
this.modify("cashbox_id",cashboxId); this.modify("cashbox_id",cashboxId);
} }
......
...@@ -86,7 +86,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -86,7 +86,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
@TableField(value = "visible") @TableField(value = "visible")
@JSONField(name = "visible") @JSONField(name = "visible")
@JsonProperty("visible") @JsonProperty("visible")
private Boolean visible; private Object visible;
/** /**
* 关联的科目模板 * 关联的科目模板
*/ */
...@@ -101,7 +101,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -101,7 +101,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
@TableField(value = "complete_tax_set") @TableField(value = "complete_tax_set")
@JSONField(name = "complete_tax_set") @JSONField(name = "complete_tax_set")
@JsonProperty("complete_tax_set") @JsonProperty("complete_tax_set")
private Boolean completeTaxSet; private Object completeTaxSet;
/** /**
* ID * ID
*/ */
...@@ -141,7 +141,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -141,7 +141,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
@TableField(value = "use_anglo_saxon") @TableField(value = "use_anglo_saxon")
@JSONField(name = "use_anglo_saxon") @JSONField(name = "use_anglo_saxon")
@JsonProperty("use_anglo_saxon") @JsonProperty("use_anglo_saxon")
private Boolean useAngloSaxon; private Object useAngloSaxon;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -518,7 +518,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -518,7 +518,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [# 数字] * 设置 [# 数字]
*/ */
public void setCodeDigits(Integer codeDigits){ public void setCodeDigits(Integer codeDigits){
this.codeDigits = codeDigits ; //2 this.codeDigits = codeDigits ;
this.modify("code_digits",codeDigits); this.modify("code_digits",codeDigits);
} }
...@@ -526,7 +526,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -526,7 +526,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [主转账帐户的前缀] * 设置 [主转账帐户的前缀]
*/ */
public void setTransferAccountCodePrefix(String transferAccountCodePrefix){ public void setTransferAccountCodePrefix(String transferAccountCodePrefix){
this.transferAccountCodePrefix = transferAccountCodePrefix ; //2 this.transferAccountCodePrefix = transferAccountCodePrefix ;
this.modify("transfer_account_code_prefix",transferAccountCodePrefix); this.modify("transfer_account_code_prefix",transferAccountCodePrefix);
} }
...@@ -534,7 +534,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -534,7 +534,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [银行科目的前缀] * 设置 [银行科目的前缀]
*/ */
public void setBankAccountCodePrefix(String bankAccountCodePrefix){ public void setBankAccountCodePrefix(String bankAccountCodePrefix){
this.bankAccountCodePrefix = bankAccountCodePrefix ; //2 this.bankAccountCodePrefix = bankAccountCodePrefix ;
this.modify("bank_account_code_prefix",bankAccountCodePrefix); this.modify("bank_account_code_prefix",bankAccountCodePrefix);
} }
...@@ -542,23 +542,23 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -542,23 +542,23 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [口语] * 设置 [口语]
*/ */
public void setSpokenLanguages(String spokenLanguages){ public void setSpokenLanguages(String spokenLanguages){
this.spokenLanguages = spokenLanguages ; //2 this.spokenLanguages = spokenLanguages ;
this.modify("spoken_languages",spokenLanguages); this.modify("spoken_languages",spokenLanguages);
} }
/** /**
* 设置 [可显示?] * 设置 [可显示?]
*/ */
public void setVisible(Boolean visible){ public void setVisible(Object visible){
this.visible = visible ; //2 this.visible = visible ;
this.modify("visible",visible); this.modify("visible",visible);
} }
/** /**
* 设置 [税率完整集合] * 设置 [税率完整集合]
*/ */
public void setCompleteTaxSet(Boolean completeTaxSet){ public void setCompleteTaxSet(Object completeTaxSet){
this.completeTaxSet = completeTaxSet ; //2 this.completeTaxSet = completeTaxSet ;
this.modify("complete_tax_set",completeTaxSet); this.modify("complete_tax_set",completeTaxSet);
} }
...@@ -566,15 +566,15 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -566,15 +566,15 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [主现金科目的前缀] * 设置 [主现金科目的前缀]
*/ */
public void setCashAccountCodePrefix(String cashAccountCodePrefix){ public void setCashAccountCodePrefix(String cashAccountCodePrefix){
this.cashAccountCodePrefix = cashAccountCodePrefix ; //2 this.cashAccountCodePrefix = cashAccountCodePrefix ;
this.modify("cash_account_code_prefix",cashAccountCodePrefix); this.modify("cash_account_code_prefix",cashAccountCodePrefix);
} }
/** /**
* 设置 [使用anglo-saxon会计] * 设置 [使用anglo-saxon会计]
*/ */
public void setUseAngloSaxon(Boolean useAngloSaxon){ public void setUseAngloSaxon(Object useAngloSaxon){
this.useAngloSaxon = useAngloSaxon ; //2 this.useAngloSaxon = useAngloSaxon ;
this.modify("use_anglo_saxon",useAngloSaxon); this.modify("use_anglo_saxon",useAngloSaxon);
} }
...@@ -582,7 +582,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -582,7 +582,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -590,7 +590,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -590,7 +590,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [库存计价的科目模板] * 设置 [库存计价的科目模板]
*/ */
public void setPropertyStockValuationAccountId(Long propertyStockValuationAccountId){ public void setPropertyStockValuationAccountId(Long propertyStockValuationAccountId){
this.propertyStockValuationAccountId = propertyStockValuationAccountId ; //2 this.propertyStockValuationAccountId = propertyStockValuationAccountId ;
this.modify("property_stock_valuation_account_id",propertyStockValuationAccountId); this.modify("property_stock_valuation_account_id",propertyStockValuationAccountId);
} }
...@@ -598,7 +598,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -598,7 +598,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [汇率损失科目] * 设置 [汇率损失科目]
*/ */
public void setExpenseCurrencyExchangeAccountId(Long expenseCurrencyExchangeAccountId){ public void setExpenseCurrencyExchangeAccountId(Long expenseCurrencyExchangeAccountId){
this.expenseCurrencyExchangeAccountId = expenseCurrencyExchangeAccountId ; //2 this.expenseCurrencyExchangeAccountId = expenseCurrencyExchangeAccountId ;
this.modify("expense_currency_exchange_account_id",expenseCurrencyExchangeAccountId); this.modify("expense_currency_exchange_account_id",expenseCurrencyExchangeAccountId);
} }
...@@ -606,7 +606,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -606,7 +606,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [应付科目] * 设置 [应付科目]
*/ */
public void setPropertyAccountPayableId(Long propertyAccountPayableId){ public void setPropertyAccountPayableId(Long propertyAccountPayableId){
this.propertyAccountPayableId = propertyAccountPayableId ; //2 this.propertyAccountPayableId = propertyAccountPayableId ;
this.modify("property_account_payable_id",propertyAccountPayableId); this.modify("property_account_payable_id",propertyAccountPayableId);
} }
...@@ -614,7 +614,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -614,7 +614,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [收入科目的类别] * 设置 [收入科目的类别]
*/ */
public void setPropertyAccountIncomeCategId(Long propertyAccountIncomeCategId){ public void setPropertyAccountIncomeCategId(Long propertyAccountIncomeCategId){
this.propertyAccountIncomeCategId = propertyAccountIncomeCategId ; //2 this.propertyAccountIncomeCategId = propertyAccountIncomeCategId ;
this.modify("property_account_income_categ_id",propertyAccountIncomeCategId); this.modify("property_account_income_categ_id",propertyAccountIncomeCategId);
} }
...@@ -622,7 +622,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -622,7 +622,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [库存计价的出货科目] * 设置 [库存计价的出货科目]
*/ */
public void setPropertyStockAccountOutputCategId(Long propertyStockAccountOutputCategId){ public void setPropertyStockAccountOutputCategId(Long propertyStockAccountOutputCategId){
this.propertyStockAccountOutputCategId = propertyStockAccountOutputCategId ; //2 this.propertyStockAccountOutputCategId = propertyStockAccountOutputCategId ;
this.modify("property_stock_account_output_categ_id",propertyStockAccountOutputCategId); this.modify("property_stock_account_output_categ_id",propertyStockAccountOutputCategId);
} }
...@@ -630,7 +630,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -630,7 +630,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [产品模板的费用科目] * 设置 [产品模板的费用科目]
*/ */
public void setPropertyAccountExpenseId(Long propertyAccountExpenseId){ public void setPropertyAccountExpenseId(Long propertyAccountExpenseId){
this.propertyAccountExpenseId = propertyAccountExpenseId ; //2 this.propertyAccountExpenseId = propertyAccountExpenseId ;
this.modify("property_account_expense_id",propertyAccountExpenseId); this.modify("property_account_expense_id",propertyAccountExpenseId);
} }
...@@ -638,7 +638,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -638,7 +638,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [币种] * 设置 [币种]
*/ */
public void setCurrencyId(Long currencyId){ public void setCurrencyId(Long currencyId){
this.currencyId = currencyId ; //2 this.currencyId = currencyId ;
this.modify("currency_id",currencyId); this.modify("currency_id",currencyId);
} }
...@@ -646,7 +646,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -646,7 +646,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [上级表模板] * 设置 [上级表模板]
*/ */
public void setParentId(Long parentId){ public void setParentId(Long parentId){
this.parentId = parentId ; //2 this.parentId = parentId ;
this.modify("parent_id",parentId); this.modify("parent_id",parentId);
} }
...@@ -654,7 +654,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -654,7 +654,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [应收科目] * 设置 [应收科目]
*/ */
public void setPropertyAccountReceivableId(Long propertyAccountReceivableId){ public void setPropertyAccountReceivableId(Long propertyAccountReceivableId){
this.propertyAccountReceivableId = propertyAccountReceivableId ; //2 this.propertyAccountReceivableId = propertyAccountReceivableId ;
this.modify("property_account_receivable_id",propertyAccountReceivableId); this.modify("property_account_receivable_id",propertyAccountReceivableId);
} }
...@@ -662,7 +662,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -662,7 +662,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [费用科目的类别] * 设置 [费用科目的类别]
*/ */
public void setPropertyAccountExpenseCategId(Long propertyAccountExpenseCategId){ public void setPropertyAccountExpenseCategId(Long propertyAccountExpenseCategId){
this.propertyAccountExpenseCategId = propertyAccountExpenseCategId ; //2 this.propertyAccountExpenseCategId = propertyAccountExpenseCategId ;
this.modify("property_account_expense_categ_id",propertyAccountExpenseCategId); this.modify("property_account_expense_categ_id",propertyAccountExpenseCategId);
} }
...@@ -670,7 +670,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -670,7 +670,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [汇率增益科目] * 设置 [汇率增益科目]
*/ */
public void setIncomeCurrencyExchangeAccountId(Long incomeCurrencyExchangeAccountId){ public void setIncomeCurrencyExchangeAccountId(Long incomeCurrencyExchangeAccountId){
this.incomeCurrencyExchangeAccountId = incomeCurrencyExchangeAccountId ; //2 this.incomeCurrencyExchangeAccountId = incomeCurrencyExchangeAccountId ;
this.modify("income_currency_exchange_account_id",incomeCurrencyExchangeAccountId); this.modify("income_currency_exchange_account_id",incomeCurrencyExchangeAccountId);
} }
...@@ -678,7 +678,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -678,7 +678,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [库存计价的入库科目] * 设置 [库存计价的入库科目]
*/ */
public void setPropertyStockAccountInputCategId(Long propertyStockAccountInputCategId){ public void setPropertyStockAccountInputCategId(Long propertyStockAccountInputCategId){
this.propertyStockAccountInputCategId = propertyStockAccountInputCategId ; //2 this.propertyStockAccountInputCategId = propertyStockAccountInputCategId ;
this.modify("property_stock_account_input_categ_id",propertyStockAccountInputCategId); this.modify("property_stock_account_input_categ_id",propertyStockAccountInputCategId);
} }
...@@ -686,7 +686,7 @@ public class Account_chart_template extends EntityMP implements Serializable { ...@@ -686,7 +686,7 @@ public class Account_chart_template extends EntityMP implements Serializable {
* 设置 [产品模板的收入科目] * 设置 [产品模板的收入科目]
*/ */
public void setPropertyAccountIncomeId(Long propertyAccountIncomeId){ public void setPropertyAccountIncomeId(Long propertyAccountIncomeId){
this.propertyAccountIncomeId = propertyAccountIncomeId ; //2 this.propertyAccountIncomeId = propertyAccountIncomeId ;
this.modify("property_account_income_id",propertyAccountIncomeId); this.modify("property_account_income_id",propertyAccountIncomeId);
} }
......
...@@ -56,7 +56,7 @@ public class Account_common_journal_report extends EntityMP implements Serializa ...@@ -56,7 +56,7 @@ public class Account_common_journal_report extends EntityMP implements Serializa
@TableField(value = "amount_currency") @TableField(value = "amount_currency")
@JSONField(name = "amount_currency") @JSONField(name = "amount_currency")
@JsonProperty("amount_currency") @JsonProperty("amount_currency")
private Boolean amountCurrency; private Object amountCurrency;
/** /**
* 结束日期 * 结束日期
*/ */
...@@ -199,15 +199,15 @@ public class Account_common_journal_report extends EntityMP implements Serializa ...@@ -199,15 +199,15 @@ public class Account_common_journal_report extends EntityMP implements Serializa
* 设置 [目标分录] * 设置 [目标分录]
*/ */
public void setTargetMove(String targetMove){ public void setTargetMove(String targetMove){
this.targetMove = targetMove ; //2 this.targetMove = targetMove ;
this.modify("target_move",targetMove); this.modify("target_move",targetMove);
} }
/** /**
* 设置 [使用货币] * 设置 [使用货币]
*/ */
public void setAmountCurrency(Boolean amountCurrency){ public void setAmountCurrency(Object amountCurrency){
this.amountCurrency = amountCurrency ; //2 this.amountCurrency = amountCurrency ;
this.modify("amount_currency",amountCurrency); this.modify("amount_currency",amountCurrency);
} }
...@@ -215,7 +215,7 @@ public class Account_common_journal_report extends EntityMP implements Serializa ...@@ -215,7 +215,7 @@ public class Account_common_journal_report extends EntityMP implements Serializa
* 设置 [结束日期] * 设置 [结束日期]
*/ */
public void setDateTo(Timestamp dateTo){ public void setDateTo(Timestamp dateTo){
this.dateTo = dateTo ; //2 this.dateTo = dateTo ;
this.modify("date_to",dateTo); this.modify("date_to",dateTo);
} }
...@@ -233,7 +233,7 @@ public class Account_common_journal_report extends EntityMP implements Serializa ...@@ -233,7 +233,7 @@ public class Account_common_journal_report extends EntityMP implements Serializa
* 设置 [开始日期] * 设置 [开始日期]
*/ */
public void setDateFrom(Timestamp dateFrom){ public void setDateFrom(Timestamp dateFrom){
this.dateFrom = dateFrom ; //2 this.dateFrom = dateFrom ;
this.modify("date_from",dateFrom); this.modify("date_from",dateFrom);
} }
...@@ -251,7 +251,7 @@ public class Account_common_journal_report extends EntityMP implements Serializa ...@@ -251,7 +251,7 @@ public class Account_common_journal_report extends EntityMP implements Serializa
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
......
...@@ -191,7 +191,7 @@ public class Account_common_report extends EntityMP implements Serializable { ...@@ -191,7 +191,7 @@ public class Account_common_report extends EntityMP implements Serializable {
* 设置 [结束日期] * 设置 [结束日期]
*/ */
public void setDateTo(Timestamp dateTo){ public void setDateTo(Timestamp dateTo){
this.dateTo = dateTo ; //2 this.dateTo = dateTo ;
this.modify("date_to",dateTo); this.modify("date_to",dateTo);
} }
...@@ -209,7 +209,7 @@ public class Account_common_report extends EntityMP implements Serializable { ...@@ -209,7 +209,7 @@ public class Account_common_report extends EntityMP implements Serializable {
* 设置 [开始日期] * 设置 [开始日期]
*/ */
public void setDateFrom(Timestamp dateFrom){ public void setDateFrom(Timestamp dateFrom){
this.dateFrom = dateFrom ; //2 this.dateFrom = dateFrom ;
this.modify("date_from",dateFrom); this.modify("date_from",dateFrom);
} }
...@@ -227,7 +227,7 @@ public class Account_common_report extends EntityMP implements Serializable { ...@@ -227,7 +227,7 @@ public class Account_common_report extends EntityMP implements Serializable {
* 设置 [目标分录] * 设置 [目标分录]
*/ */
public void setTargetMove(String targetMove){ public void setTargetMove(String targetMove){
this.targetMove = targetMove ; //2 this.targetMove = targetMove ;
this.modify("target_move",targetMove); this.modify("target_move",targetMove);
} }
...@@ -235,7 +235,7 @@ public class Account_common_report extends EntityMP implements Serializable { ...@@ -235,7 +235,7 @@ public class Account_common_report extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
......
...@@ -55,7 +55,7 @@ public class Account_financial_year_op extends EntityMP implements Serializable ...@@ -55,7 +55,7 @@ public class Account_financial_year_op extends EntityMP implements Serializable
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "opening_move_posted") @JSONField(name = "opening_move_posted")
@JsonProperty("opening_move_posted") @JsonProperty("opening_move_posted")
private Boolean openingMovePosted; private Object openingMovePosted;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -187,7 +187,7 @@ public class Account_financial_year_op extends EntityMP implements Serializable ...@@ -187,7 +187,7 @@ public class Account_financial_year_op extends EntityMP implements Serializable
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
......
...@@ -63,7 +63,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable { ...@@ -63,7 +63,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable {
@TableField(value = "vat_required") @TableField(value = "vat_required")
@JSONField(name = "vat_required") @JSONField(name = "vat_required")
@JsonProperty("vat_required") @JsonProperty("vat_required")
private Boolean vatRequired; private Object vatRequired;
/** /**
* 科目映射 * 科目映射
*/ */
...@@ -99,7 +99,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable { ...@@ -99,7 +99,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable {
@TableField(value = "auto_apply") @TableField(value = "auto_apply")
@JSONField(name = "auto_apply") @JSONField(name = "auto_apply")
@JsonProperty("auto_apply") @JsonProperty("auto_apply")
private Boolean autoApply; private Object autoApply;
/** /**
* 最后更新时间 * 最后更新时间
*/ */
...@@ -152,7 +152,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable { ...@@ -152,7 +152,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable {
@TableField(value = "active") @TableField(value = "active")
@JSONField(name = "active") @JSONField(name = "active")
@JsonProperty("active") @JsonProperty("active")
private Boolean active; private Object active;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -292,15 +292,15 @@ public class Account_fiscal_position extends EntityMP implements Serializable { ...@@ -292,15 +292,15 @@ public class Account_fiscal_position extends EntityMP implements Serializable {
* 设置 [税科目调整] * 设置 [税科目调整]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
/** /**
* 设置 [VAT必须] * 设置 [VAT必须]
*/ */
public void setVatRequired(Boolean vatRequired){ public void setVatRequired(Object vatRequired){
this.vatRequired = vatRequired ; //2 this.vatRequired = vatRequired ;
this.modify("vat_required",vatRequired); this.modify("vat_required",vatRequired);
} }
...@@ -308,15 +308,15 @@ public class Account_fiscal_position extends EntityMP implements Serializable { ...@@ -308,15 +308,15 @@ public class Account_fiscal_position extends EntityMP implements Serializable {
* 设置 [序号] * 设置 [序号]
*/ */
public void setSequence(Integer sequence){ public void setSequence(Integer sequence){
this.sequence = sequence ; //2 this.sequence = sequence ;
this.modify("sequence",sequence); this.modify("sequence",sequence);
} }
/** /**
* 设置 [自动检测] * 设置 [自动检测]
*/ */
public void setAutoApply(Boolean autoApply){ public void setAutoApply(Object autoApply){
this.autoApply = autoApply ; //2 this.autoApply = autoApply ;
this.modify("auto_apply",autoApply); this.modify("auto_apply",autoApply);
} }
...@@ -324,7 +324,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable { ...@@ -324,7 +324,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable {
* 设置 [备注] * 设置 [备注]
*/ */
public void setNote(String note){ public void setNote(String note){
this.note = note ; //2 this.note = note ;
this.modify("note",note); this.modify("note",note);
} }
...@@ -332,15 +332,15 @@ public class Account_fiscal_position extends EntityMP implements Serializable { ...@@ -332,15 +332,15 @@ public class Account_fiscal_position extends EntityMP implements Serializable {
* 设置 [邮编范围到] * 设置 [邮编范围到]
*/ */
public void setZipTo(Integer zipTo){ public void setZipTo(Integer zipTo){
this.zipTo = zipTo ; //2 this.zipTo = zipTo ;
this.modify("zip_to",zipTo); this.modify("zip_to",zipTo);
} }
/** /**
* 设置 [有效] * 设置 [有效]
*/ */
public void setActive(Boolean active){ public void setActive(Object active){
this.active = active ; //2 this.active = active ;
this.modify("active",active); this.modify("active",active);
} }
...@@ -348,7 +348,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable { ...@@ -348,7 +348,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable {
* 设置 [邮编范围从] * 设置 [邮编范围从]
*/ */
public void setZipFrom(Integer zipFrom){ public void setZipFrom(Integer zipFrom){
this.zipFrom = zipFrom ; //2 this.zipFrom = zipFrom ;
this.modify("zip_from",zipFrom); this.modify("zip_from",zipFrom);
} }
...@@ -356,7 +356,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable { ...@@ -356,7 +356,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
...@@ -364,7 +364,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable { ...@@ -364,7 +364,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable {
* 设置 [国家] * 设置 [国家]
*/ */
public void setCountryId(Long countryId){ public void setCountryId(Long countryId){
this.countryId = countryId ; //2 this.countryId = countryId ;
this.modify("country_id",countryId); this.modify("country_id",countryId);
} }
...@@ -372,7 +372,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable { ...@@ -372,7 +372,7 @@ public class Account_fiscal_position extends EntityMP implements Serializable {
* 设置 [国家群组] * 设置 [国家群组]
*/ */
public void setCountryGroupId(Long countryGroupId){ public void setCountryGroupId(Long countryGroupId){
this.countryGroupId = countryGroupId ; //2 this.countryGroupId = countryGroupId ;
this.modify("country_group_id",countryGroupId); this.modify("country_group_id",countryGroupId);
} }
......
...@@ -204,7 +204,7 @@ public class Account_fiscal_position_account extends EntityMP implements Seriali ...@@ -204,7 +204,7 @@ public class Account_fiscal_position_account extends EntityMP implements Seriali
* 设置 [税科目调整] * 设置 [税科目调整]
*/ */
public void setPositionId(Long positionId){ public void setPositionId(Long positionId){
this.positionId = positionId ; //2 this.positionId = positionId ;
this.modify("position_id",positionId); this.modify("position_id",positionId);
} }
...@@ -212,7 +212,7 @@ public class Account_fiscal_position_account extends EntityMP implements Seriali ...@@ -212,7 +212,7 @@ public class Account_fiscal_position_account extends EntityMP implements Seriali
* 设置 [替代使用的科目] * 设置 [替代使用的科目]
*/ */
public void setAccountDestId(Long accountDestId){ public void setAccountDestId(Long accountDestId){
this.accountDestId = accountDestId ; //2 this.accountDestId = accountDestId ;
this.modify("account_dest_id",accountDestId); this.modify("account_dest_id",accountDestId);
} }
...@@ -220,7 +220,7 @@ public class Account_fiscal_position_account extends EntityMP implements Seriali ...@@ -220,7 +220,7 @@ public class Account_fiscal_position_account extends EntityMP implements Seriali
* 设置 [产品上的科目] * 设置 [产品上的科目]
*/ */
public void setAccountSrcId(Long accountSrcId){ public void setAccountSrcId(Long accountSrcId){
this.accountSrcId = accountSrcId ; //2 this.accountSrcId = accountSrcId ;
this.modify("account_src_id",accountSrcId); this.modify("account_src_id",accountSrcId);
} }
......
...@@ -204,7 +204,7 @@ public class Account_fiscal_position_account_template extends EntityMP implement ...@@ -204,7 +204,7 @@ public class Account_fiscal_position_account_template extends EntityMP implement
* 设置 [科目目标] * 设置 [科目目标]
*/ */
public void setAccountDestId(Long accountDestId){ public void setAccountDestId(Long accountDestId){
this.accountDestId = accountDestId ; //2 this.accountDestId = accountDestId ;
this.modify("account_dest_id",accountDestId); this.modify("account_dest_id",accountDestId);
} }
...@@ -212,7 +212,7 @@ public class Account_fiscal_position_account_template extends EntityMP implement ...@@ -212,7 +212,7 @@ public class Account_fiscal_position_account_template extends EntityMP implement
* 设置 [科目来源] * 设置 [科目来源]
*/ */
public void setAccountSrcId(Long accountSrcId){ public void setAccountSrcId(Long accountSrcId){
this.accountSrcId = accountSrcId ; //2 this.accountSrcId = accountSrcId ;
this.modify("account_src_id",accountSrcId); this.modify("account_src_id",accountSrcId);
} }
...@@ -220,7 +220,7 @@ public class Account_fiscal_position_account_template extends EntityMP implement ...@@ -220,7 +220,7 @@ public class Account_fiscal_position_account_template extends EntityMP implement
* 设置 [财务映射] * 设置 [财务映射]
*/ */
public void setPositionId(Long positionId){ public void setPositionId(Long positionId){
this.positionId = positionId ; //2 this.positionId = positionId ;
this.modify("position_id",positionId); this.modify("position_id",positionId);
} }
......
...@@ -204,7 +204,7 @@ public class Account_fiscal_position_tax extends EntityMP implements Serializabl ...@@ -204,7 +204,7 @@ public class Account_fiscal_position_tax extends EntityMP implements Serializabl
* 设置 [税科目调整] * 设置 [税科目调整]
*/ */
public void setPositionId(Long positionId){ public void setPositionId(Long positionId){
this.positionId = positionId ; //2 this.positionId = positionId ;
this.modify("position_id",positionId); this.modify("position_id",positionId);
} }
...@@ -212,7 +212,7 @@ public class Account_fiscal_position_tax extends EntityMP implements Serializabl ...@@ -212,7 +212,7 @@ public class Account_fiscal_position_tax extends EntityMP implements Serializabl
* 设置 [采用的税] * 设置 [采用的税]
*/ */
public void setTaxDestId(Long taxDestId){ public void setTaxDestId(Long taxDestId){
this.taxDestId = taxDestId ; //2 this.taxDestId = taxDestId ;
this.modify("tax_dest_id",taxDestId); this.modify("tax_dest_id",taxDestId);
} }
...@@ -220,7 +220,7 @@ public class Account_fiscal_position_tax extends EntityMP implements Serializabl ...@@ -220,7 +220,7 @@ public class Account_fiscal_position_tax extends EntityMP implements Serializabl
* 设置 [产品上的税] * 设置 [产品上的税]
*/ */
public void setTaxSrcId(Long taxSrcId){ public void setTaxSrcId(Long taxSrcId){
this.taxSrcId = taxSrcId ; //2 this.taxSrcId = taxSrcId ;
this.modify("tax_src_id",taxSrcId); this.modify("tax_src_id",taxSrcId);
} }
......
...@@ -204,7 +204,7 @@ public class Account_fiscal_position_tax_template extends EntityMP implements Se ...@@ -204,7 +204,7 @@ public class Account_fiscal_position_tax_template extends EntityMP implements Se
* 设置 [税科目调整] * 设置 [税科目调整]
*/ */
public void setPositionId(Long positionId){ public void setPositionId(Long positionId){
this.positionId = positionId ; //2 this.positionId = positionId ;
this.modify("position_id",positionId); this.modify("position_id",positionId);
} }
...@@ -212,7 +212,7 @@ public class Account_fiscal_position_tax_template extends EntityMP implements Se ...@@ -212,7 +212,7 @@ public class Account_fiscal_position_tax_template extends EntityMP implements Se
* 设置 [税源] * 设置 [税源]
*/ */
public void setTaxSrcId(Long taxSrcId){ public void setTaxSrcId(Long taxSrcId){
this.taxSrcId = taxSrcId ; //2 this.taxSrcId = taxSrcId ;
this.modify("tax_src_id",taxSrcId); this.modify("tax_src_id",taxSrcId);
} }
...@@ -220,7 +220,7 @@ public class Account_fiscal_position_tax_template extends EntityMP implements Se ...@@ -220,7 +220,7 @@ public class Account_fiscal_position_tax_template extends EntityMP implements Se
* 设置 [替代税] * 设置 [替代税]
*/ */
public void setTaxDestId(Long taxDestId){ public void setTaxDestId(Long taxDestId){
this.taxDestId = taxDestId ; //2 this.taxDestId = taxDestId ;
this.modify("tax_dest_id",taxDestId); this.modify("tax_dest_id",taxDestId);
} }
......
...@@ -76,7 +76,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial ...@@ -76,7 +76,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial
@TableField(value = "auto_apply") @TableField(value = "auto_apply")
@JSONField(name = "auto_apply") @JSONField(name = "auto_apply")
@JsonProperty("auto_apply") @JsonProperty("auto_apply")
private Boolean autoApply; private Object autoApply;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -148,7 +148,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial ...@@ -148,7 +148,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial
@TableField(value = "vat_required") @TableField(value = "vat_required")
@JSONField(name = "vat_required") @JSONField(name = "vat_required")
@JsonProperty("vat_required") @JsonProperty("vat_required")
private Boolean vatRequired; private Object vatRequired;
/** /**
* 显示名称 * 显示名称
*/ */
...@@ -278,7 +278,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial ...@@ -278,7 +278,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial
* 设置 [税科目调整模版] * 设置 [税科目调整模版]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -286,7 +286,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial ...@@ -286,7 +286,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial
* 设置 [备注] * 设置 [备注]
*/ */
public void setNote(String note){ public void setNote(String note){
this.note = note ; //2 this.note = note ;
this.modify("note",note); this.modify("note",note);
} }
...@@ -294,15 +294,15 @@ public class Account_fiscal_position_template extends EntityMP implements Serial ...@@ -294,15 +294,15 @@ public class Account_fiscal_position_template extends EntityMP implements Serial
* 设置 [序号] * 设置 [序号]
*/ */
public void setSequence(Integer sequence){ public void setSequence(Integer sequence){
this.sequence = sequence ; //2 this.sequence = sequence ;
this.modify("sequence",sequence); this.modify("sequence",sequence);
} }
/** /**
* 设置 [自动检测] * 设置 [自动检测]
*/ */
public void setAutoApply(Boolean autoApply){ public void setAutoApply(Object autoApply){
this.autoApply = autoApply ; //2 this.autoApply = autoApply ;
this.modify("auto_apply",autoApply); this.modify("auto_apply",autoApply);
} }
...@@ -310,7 +310,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial ...@@ -310,7 +310,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial
* 设置 [邮编范围到] * 设置 [邮编范围到]
*/ */
public void setZipTo(Integer zipTo){ public void setZipTo(Integer zipTo){
this.zipTo = zipTo ; //2 this.zipTo = zipTo ;
this.modify("zip_to",zipTo); this.modify("zip_to",zipTo);
} }
...@@ -318,15 +318,15 @@ public class Account_fiscal_position_template extends EntityMP implements Serial ...@@ -318,15 +318,15 @@ public class Account_fiscal_position_template extends EntityMP implements Serial
* 设置 [邮编范围从] * 设置 [邮编范围从]
*/ */
public void setZipFrom(Integer zipFrom){ public void setZipFrom(Integer zipFrom){
this.zipFrom = zipFrom ; //2 this.zipFrom = zipFrom ;
this.modify("zip_from",zipFrom); this.modify("zip_from",zipFrom);
} }
/** /**
* 设置 [VAT必须] * 设置 [VAT必须]
*/ */
public void setVatRequired(Boolean vatRequired){ public void setVatRequired(Object vatRequired){
this.vatRequired = vatRequired ; //2 this.vatRequired = vatRequired ;
this.modify("vat_required",vatRequired); this.modify("vat_required",vatRequired);
} }
...@@ -334,7 +334,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial ...@@ -334,7 +334,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial
* 设置 [国家群组] * 设置 [国家群组]
*/ */
public void setCountryGroupId(Long countryGroupId){ public void setCountryGroupId(Long countryGroupId){
this.countryGroupId = countryGroupId ; //2 this.countryGroupId = countryGroupId ;
this.modify("country_group_id",countryGroupId); this.modify("country_group_id",countryGroupId);
} }
...@@ -342,7 +342,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial ...@@ -342,7 +342,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial
* 设置 [国家] * 设置 [国家]
*/ */
public void setCountryId(Long countryId){ public void setCountryId(Long countryId){
this.countryId = countryId ; //2 this.countryId = countryId ;
this.modify("country_id",countryId); this.modify("country_id",countryId);
} }
...@@ -350,7 +350,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial ...@@ -350,7 +350,7 @@ public class Account_fiscal_position_template extends EntityMP implements Serial
* 设置 [表模板] * 设置 [表模板]
*/ */
public void setChartTemplateId(Long chartTemplateId){ public void setChartTemplateId(Long chartTemplateId){
this.chartTemplateId = chartTemplateId ; //2 this.chartTemplateId = chartTemplateId ;
this.modify("chart_template_id",chartTemplateId); this.modify("chart_template_id",chartTemplateId);
} }
......
...@@ -183,7 +183,7 @@ public class Account_fiscal_year extends EntityMP implements Serializable { ...@@ -183,7 +183,7 @@ public class Account_fiscal_year extends EntityMP implements Serializable {
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -191,7 +191,7 @@ public class Account_fiscal_year extends EntityMP implements Serializable { ...@@ -191,7 +191,7 @@ public class Account_fiscal_year extends EntityMP implements Serializable {
* 设置 [开始日期] * 设置 [开始日期]
*/ */
public void setDateFrom(Timestamp dateFrom){ public void setDateFrom(Timestamp dateFrom){
this.dateFrom = dateFrom ; //2 this.dateFrom = dateFrom ;
this.modify("date_from",dateFrom); this.modify("date_from",dateFrom);
} }
...@@ -209,7 +209,7 @@ public class Account_fiscal_year extends EntityMP implements Serializable { ...@@ -209,7 +209,7 @@ public class Account_fiscal_year extends EntityMP implements Serializable {
* 设置 [结束日期] * 设置 [结束日期]
*/ */
public void setDateTo(Timestamp dateTo){ public void setDateTo(Timestamp dateTo){
this.dateTo = dateTo ; //2 this.dateTo = dateTo ;
this.modify("date_to",dateTo); this.modify("date_to",dateTo);
} }
...@@ -227,7 +227,7 @@ public class Account_fiscal_year extends EntityMP implements Serializable { ...@@ -227,7 +227,7 @@ public class Account_fiscal_year extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
......
...@@ -179,7 +179,7 @@ public class Account_full_reconcile extends EntityMP implements Serializable { ...@@ -179,7 +179,7 @@ public class Account_full_reconcile extends EntityMP implements Serializable {
* 设置 [号码] * 设置 [号码]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -187,7 +187,7 @@ public class Account_full_reconcile extends EntityMP implements Serializable { ...@@ -187,7 +187,7 @@ public class Account_full_reconcile extends EntityMP implements Serializable {
* 设置 [外汇交易] * 设置 [外汇交易]
*/ */
public void setExchangeMoveId(Long exchangeMoveId){ public void setExchangeMoveId(Long exchangeMoveId){
this.exchangeMoveId = exchangeMoveId ; //2 this.exchangeMoveId = exchangeMoveId ;
this.modify("exchange_move_id",exchangeMoveId); this.modify("exchange_move_id",exchangeMoveId);
} }
......
...@@ -181,7 +181,7 @@ public class Account_group extends EntityMP implements Serializable { ...@@ -181,7 +181,7 @@ public class Account_group extends EntityMP implements Serializable {
* 设置 [父级路径] * 设置 [父级路径]
*/ */
public void setParentPath(String parentPath){ public void setParentPath(String parentPath){
this.parentPath = parentPath ; //2 this.parentPath = parentPath ;
this.modify("parent_path",parentPath); this.modify("parent_path",parentPath);
} }
...@@ -189,7 +189,7 @@ public class Account_group extends EntityMP implements Serializable { ...@@ -189,7 +189,7 @@ public class Account_group extends EntityMP implements Serializable {
* 设置 [代码前缀] * 设置 [代码前缀]
*/ */
public void setCodePrefix(String codePrefix){ public void setCodePrefix(String codePrefix){
this.codePrefix = codePrefix ; //2 this.codePrefix = codePrefix ;
this.modify("code_prefix",codePrefix); this.modify("code_prefix",codePrefix);
} }
...@@ -197,7 +197,7 @@ public class Account_group extends EntityMP implements Serializable { ...@@ -197,7 +197,7 @@ public class Account_group extends EntityMP implements Serializable {
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -205,7 +205,7 @@ public class Account_group extends EntityMP implements Serializable { ...@@ -205,7 +205,7 @@ public class Account_group extends EntityMP implements Serializable {
* 设置 [上级] * 设置 [上级]
*/ */
public void setParentId(Long parentId){ public void setParentId(Long parentId){
this.parentId = parentId ; //2 this.parentId = parentId ;
this.modify("parent_id",parentId); this.modify("parent_id",parentId);
} }
......
...@@ -79,7 +79,7 @@ public class Account_incoterms extends EntityMP implements Serializable { ...@@ -79,7 +79,7 @@ public class Account_incoterms extends EntityMP implements Serializable {
@TableField(value = "active") @TableField(value = "active")
@JSONField(name = "active") @JSONField(name = "active")
@JsonProperty("active") @JsonProperty("active")
private Boolean active; private Object active;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -156,15 +156,15 @@ public class Account_incoterms extends EntityMP implements Serializable { ...@@ -156,15 +156,15 @@ public class Account_incoterms extends EntityMP implements Serializable {
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
/** /**
* 设置 [有效] * 设置 [有效]
*/ */
public void setActive(Boolean active){ public void setActive(Object active){
this.active = active ; //2 this.active = active ;
this.modify("active",active); this.modify("active",active);
} }
...@@ -172,7 +172,7 @@ public class Account_incoterms extends EntityMP implements Serializable { ...@@ -172,7 +172,7 @@ public class Account_incoterms extends EntityMP implements Serializable {
* 设置 [代码] * 设置 [代码]
*/ */
public void setCode(String code){ public void setCode(String code){
this.code = code ; //2 this.code = code ;
this.modify("code",code); this.modify("code",code);
} }
......
...@@ -165,7 +165,7 @@ public class Account_invoice_import_wizard extends EntityMP implements Serializa ...@@ -165,7 +165,7 @@ public class Account_invoice_import_wizard extends EntityMP implements Serializa
* 设置 [日记账] * 设置 [日记账]
*/ */
public void setJournalId(Long journalId){ public void setJournalId(Long journalId){
this.journalId = journalId ; //2 this.journalId = journalId ;
this.modify("journal_id",journalId); this.modify("journal_id",journalId);
} }
......
...@@ -183,7 +183,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -183,7 +183,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
@TableField(value = "is_rounding_line") @TableField(value = "is_rounding_line")
@JSONField(name = "is_rounding_line") @JSONField(name = "is_rounding_line")
@JsonProperty("is_rounding_line") @JsonProperty("is_rounding_line")
private Boolean isRoundingLine; private Object isRoundingLine;
/** /**
* 最后更新时间 * 最后更新时间
*/ */
...@@ -481,7 +481,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -481,7 +481,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [显示类型] * 设置 [显示类型]
*/ */
public void setDisplayType(String displayType){ public void setDisplayType(String displayType){
this.displayType = displayType ; //2 this.displayType = displayType ;
this.modify("display_type",displayType); this.modify("display_type",displayType);
} }
...@@ -489,7 +489,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -489,7 +489,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [说明] * 设置 [说明]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -497,7 +497,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -497,7 +497,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [金额 (不含税)] * 设置 [金额 (不含税)]
*/ */
public void setPriceSubtotal(BigDecimal priceSubtotal){ public void setPriceSubtotal(BigDecimal priceSubtotal){
this.priceSubtotal = priceSubtotal ; //2 this.priceSubtotal = priceSubtotal ;
this.modify("price_subtotal",priceSubtotal); this.modify("price_subtotal",priceSubtotal);
} }
...@@ -505,7 +505,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -505,7 +505,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [源文档] * 设置 [源文档]
*/ */
public void setOrigin(String origin){ public void setOrigin(String origin){
this.origin = origin ; //2 this.origin = origin ;
this.modify("origin",origin); this.modify("origin",origin);
} }
...@@ -513,7 +513,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -513,7 +513,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [折扣 (%)] * 设置 [折扣 (%)]
*/ */
public void setDiscount(Double discount){ public void setDiscount(Double discount){
this.discount = discount ; //2 this.discount = discount ;
this.modify("discount",discount); this.modify("discount",discount);
} }
...@@ -521,7 +521,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -521,7 +521,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [金额 (含税)] * 设置 [金额 (含税)]
*/ */
public void setPriceTotal(BigDecimal priceTotal){ public void setPriceTotal(BigDecimal priceTotal){
this.priceTotal = priceTotal ; //2 this.priceTotal = priceTotal ;
this.modify("price_total",priceTotal); this.modify("price_total",priceTotal);
} }
...@@ -529,7 +529,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -529,7 +529,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [数量] * 设置 [数量]
*/ */
public void setQuantity(Double quantity){ public void setQuantity(Double quantity){
this.quantity = quantity ; //2 this.quantity = quantity ;
this.modify("quantity",quantity); this.modify("quantity",quantity);
} }
...@@ -537,7 +537,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -537,7 +537,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [签核的金额] * 设置 [签核的金额]
*/ */
public void setPriceSubtotalSigned(BigDecimal priceSubtotalSigned){ public void setPriceSubtotalSigned(BigDecimal priceSubtotalSigned){
this.priceSubtotalSigned = priceSubtotalSigned ; //2 this.priceSubtotalSigned = priceSubtotalSigned ;
this.modify("price_subtotal_signed",priceSubtotalSigned); this.modify("price_subtotal_signed",priceSubtotalSigned);
} }
...@@ -545,7 +545,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -545,7 +545,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [序号] * 设置 [序号]
*/ */
public void setSequence(Integer sequence){ public void setSequence(Integer sequence){
this.sequence = sequence ; //2 this.sequence = sequence ;
this.modify("sequence",sequence); this.modify("sequence",sequence);
} }
...@@ -553,15 +553,15 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -553,15 +553,15 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [单价] * 设置 [单价]
*/ */
public void setPriceUnit(Double priceUnit){ public void setPriceUnit(Double priceUnit){
this.priceUnit = priceUnit ; //2 this.priceUnit = priceUnit ;
this.modify("price_unit",priceUnit); this.modify("price_unit",priceUnit);
} }
/** /**
* 设置 [舍入明细] * 设置 [舍入明细]
*/ */
public void setIsRoundingLine(Boolean isRoundingLine){ public void setIsRoundingLine(Object isRoundingLine){
this.isRoundingLine = isRoundingLine ; //2 this.isRoundingLine = isRoundingLine ;
this.modify("is_rounding_line",isRoundingLine); this.modify("is_rounding_line",isRoundingLine);
} }
...@@ -569,7 +569,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -569,7 +569,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [发票参考] * 设置 [发票参考]
*/ */
public void setInvoiceId(Long invoiceId){ public void setInvoiceId(Long invoiceId){
this.invoiceId = invoiceId ; //2 this.invoiceId = invoiceId ;
this.modify("invoice_id",invoiceId); this.modify("invoice_id",invoiceId);
} }
...@@ -577,7 +577,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -577,7 +577,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [产品] * 设置 [产品]
*/ */
public void setProductId(Long productId){ public void setProductId(Long productId){
this.productId = productId ; //2 this.productId = productId ;
this.modify("product_id",productId); this.modify("product_id",productId);
} }
...@@ -585,7 +585,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -585,7 +585,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [科目] * 设置 [科目]
*/ */
public void setAccountId(Long accountId){ public void setAccountId(Long accountId){
this.accountId = accountId ; //2 this.accountId = accountId ;
this.modify("account_id",accountId); this.modify("account_id",accountId);
} }
...@@ -593,7 +593,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -593,7 +593,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [采购订单行] * 设置 [采购订单行]
*/ */
public void setPurchaseLineId(Long purchaseLineId){ public void setPurchaseLineId(Long purchaseLineId){
this.purchaseLineId = purchaseLineId ; //2 this.purchaseLineId = purchaseLineId ;
this.modify("purchase_line_id",purchaseLineId); this.modify("purchase_line_id",purchaseLineId);
} }
...@@ -601,7 +601,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -601,7 +601,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [分析账户] * 设置 [分析账户]
*/ */
public void setAccountAnalyticId(Long accountAnalyticId){ public void setAccountAnalyticId(Long accountAnalyticId){
this.accountAnalyticId = accountAnalyticId ; //2 this.accountAnalyticId = accountAnalyticId ;
this.modify("account_analytic_id",accountAnalyticId); this.modify("account_analytic_id",accountAnalyticId);
} }
...@@ -609,7 +609,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -609,7 +609,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [业务伙伴] * 设置 [业务伙伴]
*/ */
public void setPartnerId(Long partnerId){ public void setPartnerId(Long partnerId){
this.partnerId = partnerId ; //2 this.partnerId = partnerId ;
this.modify("partner_id",partnerId); this.modify("partner_id",partnerId);
} }
...@@ -617,7 +617,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -617,7 +617,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [币种] * 设置 [币种]
*/ */
public void setCurrencyId(Long currencyId){ public void setCurrencyId(Long currencyId){
this.currencyId = currencyId ; //2 this.currencyId = currencyId ;
this.modify("currency_id",currencyId); this.modify("currency_id",currencyId);
} }
...@@ -625,7 +625,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -625,7 +625,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [计量单位] * 设置 [计量单位]
*/ */
public void setUomId(Long uomId){ public void setUomId(Long uomId){
this.uomId = uomId ; //2 this.uomId = uomId ;
this.modify("uom_id",uomId); this.modify("uom_id",uomId);
} }
...@@ -633,7 +633,7 @@ public class Account_invoice_line extends EntityMP implements Serializable { ...@@ -633,7 +633,7 @@ public class Account_invoice_line extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
......
...@@ -120,7 +120,7 @@ public class Account_invoice_refund extends EntityMP implements Serializable { ...@@ -120,7 +120,7 @@ public class Account_invoice_refund extends EntityMP implements Serializable {
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "refund_only") @JSONField(name = "refund_only")
@JsonProperty("refund_only") @JsonProperty("refund_only")
private Boolean refundOnly; private Object refundOnly;
/** /**
* 最后更新人 * 最后更新人
*/ */
...@@ -174,7 +174,7 @@ public class Account_invoice_refund extends EntityMP implements Serializable { ...@@ -174,7 +174,7 @@ public class Account_invoice_refund extends EntityMP implements Serializable {
* 设置 [原因] * 设置 [原因]
*/ */
public void setDescription(String description){ public void setDescription(String description){
this.description = description ; //2 this.description = description ;
this.modify("description",description); this.modify("description",description);
} }
...@@ -182,7 +182,7 @@ public class Account_invoice_refund extends EntityMP implements Serializable { ...@@ -182,7 +182,7 @@ public class Account_invoice_refund extends EntityMP implements Serializable {
* 设置 [贷方方法] * 设置 [贷方方法]
*/ */
public void setFilterRefund(String filterRefund){ public void setFilterRefund(String filterRefund){
this.filterRefund = filterRefund ; //2 this.filterRefund = filterRefund ;
this.modify("filter_refund",filterRefund); this.modify("filter_refund",filterRefund);
} }
...@@ -190,7 +190,7 @@ public class Account_invoice_refund extends EntityMP implements Serializable { ...@@ -190,7 +190,7 @@ public class Account_invoice_refund extends EntityMP implements Serializable {
* 设置 [会计日期] * 设置 [会计日期]
*/ */
public void setDate(Timestamp date){ public void setDate(Timestamp date){
this.date = date ; //2 this.date = date ;
this.modify("date",date); this.modify("date",date);
} }
...@@ -208,7 +208,7 @@ public class Account_invoice_refund extends EntityMP implements Serializable { ...@@ -208,7 +208,7 @@ public class Account_invoice_refund extends EntityMP implements Serializable {
* 设置 [信用票日期] * 设置 [信用票日期]
*/ */
public void setDateInvoice(Timestamp dateInvoice){ public void setDateInvoice(Timestamp dateInvoice){
this.dateInvoice = dateInvoice ; //2 this.dateInvoice = dateInvoice ;
this.modify("date_invoice",dateInvoice); this.modify("date_invoice",dateInvoice);
} }
......
...@@ -576,7 +576,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -576,7 +576,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [发票 #] * 设置 [发票 #]
*/ */
public void setNumber(String number){ public void setNumber(String number){
this.number = number ; //2 this.number = number ;
this.modify("number",number); this.modify("number",number);
} }
...@@ -584,7 +584,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -584,7 +584,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [数量] * 设置 [数量]
*/ */
public void setProductQty(Double productQty){ public void setProductQty(Double productQty){
this.productQty = productQty ; //2 this.productQty = productQty ;
this.modify("product_qty",productQty); this.modify("product_qty",productQty);
} }
...@@ -592,7 +592,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -592,7 +592,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [到期金额] * 设置 [到期金额]
*/ */
public void setResidual(Double residual){ public void setResidual(Double residual){
this.residual = residual ; //2 this.residual = residual ;
this.modify("residual",residual); this.modify("residual",residual);
} }
...@@ -600,7 +600,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -600,7 +600,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [发票状态] * 设置 [发票状态]
*/ */
public void setState(String state){ public void setState(String state){
this.state = state ; //2 this.state = state ;
this.modify("state",state); this.modify("state",state);
} }
...@@ -608,7 +608,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -608,7 +608,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [到期日期] * 设置 [到期日期]
*/ */
public void setDateDue(Timestamp dateDue){ public void setDateDue(Timestamp dateDue){
this.dateDue = dateDue ; //2 this.dateDue = dateDue ;
this.modify("date_due",dateDue); this.modify("date_due",dateDue);
} }
...@@ -626,7 +626,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -626,7 +626,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [行数] * 设置 [行数]
*/ */
public void setNbr(Integer nbr){ public void setNbr(Integer nbr){
this.nbr = nbr ; //2 this.nbr = nbr ;
this.modify("nbr",nbr); this.modify("nbr",nbr);
} }
...@@ -634,7 +634,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -634,7 +634,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [开票日期] * 设置 [开票日期]
*/ */
public void setDate(Timestamp date){ public void setDate(Timestamp date){
this.date = date ; //2 this.date = date ;
this.modify("date",date); this.modify("date",date);
} }
...@@ -652,7 +652,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -652,7 +652,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [总计] * 设置 [总计]
*/ */
public void setAmountTotal(Double amountTotal){ public void setAmountTotal(Double amountTotal){
this.amountTotal = amountTotal ; //2 this.amountTotal = amountTotal ;
this.modify("amount_total",amountTotal); this.modify("amount_total",amountTotal);
} }
...@@ -660,7 +660,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -660,7 +660,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [参考计量单位] * 设置 [参考计量单位]
*/ */
public void setUomName(String uomName){ public void setUomName(String uomName){
this.uomName = uomName ; //2 this.uomName = uomName ;
this.modify("uom_name",uomName); this.modify("uom_name",uomName);
} }
...@@ -668,7 +668,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -668,7 +668,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [平均价格] * 设置 [平均价格]
*/ */
public void setPriceAverage(Double priceAverage){ public void setPriceAverage(Double priceAverage){
this.priceAverage = priceAverage ; //2 this.priceAverage = priceAverage ;
this.modify("price_average",priceAverage); this.modify("price_average",priceAverage);
} }
...@@ -676,7 +676,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -676,7 +676,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [汇率] * 设置 [汇率]
*/ */
public void setCurrencyRate(Double currencyRate){ public void setCurrencyRate(Double currencyRate){
this.currencyRate = currencyRate ; //2 this.currencyRate = currencyRate ;
this.modify("currency_rate",currencyRate); this.modify("currency_rate",currencyRate);
} }
...@@ -684,7 +684,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -684,7 +684,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [不含税总计] * 设置 [不含税总计]
*/ */
public void setPriceTotal(Double priceTotal){ public void setPriceTotal(Double priceTotal){
this.priceTotal = priceTotal ; //2 this.priceTotal = priceTotal ;
this.modify("price_total",priceTotal); this.modify("price_total",priceTotal);
} }
...@@ -692,7 +692,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -692,7 +692,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [类型] * 设置 [类型]
*/ */
public void setType(String type){ public void setType(String type){
this.type = type ; //2 this.type = type ;
this.modify("type",type); this.modify("type",type);
} }
...@@ -700,7 +700,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -700,7 +700,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [产品] * 设置 [产品]
*/ */
public void setProductId(Long productId){ public void setProductId(Long productId){
this.productId = productId ; //2 this.productId = productId ;
this.modify("product_id",productId); this.modify("product_id",productId);
} }
...@@ -708,7 +708,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -708,7 +708,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [销售员] * 设置 [销售员]
*/ */
public void setUserId(Long userId){ public void setUserId(Long userId){
this.userId = userId ; //2 this.userId = userId ;
this.modify("user_id",userId); this.modify("user_id",userId);
} }
...@@ -716,7 +716,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -716,7 +716,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [业务伙伴的国家] * 设置 [业务伙伴的国家]
*/ */
public void setCountryId(Long countryId){ public void setCountryId(Long countryId){
this.countryId = countryId ; //2 this.countryId = countryId ;
this.modify("country_id",countryId); this.modify("country_id",countryId);
} }
...@@ -724,7 +724,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -724,7 +724,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [银行账户] * 设置 [银行账户]
*/ */
public void setPartnerBankId(Long partnerBankId){ public void setPartnerBankId(Long partnerBankId){
this.partnerBankId = partnerBankId ; //2 this.partnerBankId = partnerBankId ;
this.modify("partner_bank_id",partnerBankId); this.modify("partner_bank_id",partnerBankId);
} }
...@@ -732,7 +732,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -732,7 +732,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
...@@ -740,7 +740,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -740,7 +740,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [产品类别] * 设置 [产品类别]
*/ */
public void setCategId(Long categId){ public void setCategId(Long categId){
this.categId = categId ; //2 this.categId = categId ;
this.modify("categ_id",categId); this.modify("categ_id",categId);
} }
...@@ -748,7 +748,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -748,7 +748,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [业务伙伴公司] * 设置 [业务伙伴公司]
*/ */
public void setCommercialPartnerId(Long commercialPartnerId){ public void setCommercialPartnerId(Long commercialPartnerId){
this.commercialPartnerId = commercialPartnerId ; //2 this.commercialPartnerId = commercialPartnerId ;
this.modify("commercial_partner_id",commercialPartnerId); this.modify("commercial_partner_id",commercialPartnerId);
} }
...@@ -756,7 +756,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -756,7 +756,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [收/付款账户] * 设置 [收/付款账户]
*/ */
public void setAccountId(Long accountId){ public void setAccountId(Long accountId){
this.accountId = accountId ; //2 this.accountId = accountId ;
this.modify("account_id",accountId); this.modify("account_id",accountId);
} }
...@@ -764,7 +764,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -764,7 +764,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [业务伙伴] * 设置 [业务伙伴]
*/ */
public void setPartnerId(Long partnerId){ public void setPartnerId(Long partnerId){
this.partnerId = partnerId ; //2 this.partnerId = partnerId ;
this.modify("partner_id",partnerId); this.modify("partner_id",partnerId);
} }
...@@ -772,7 +772,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -772,7 +772,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [付款条款] * 设置 [付款条款]
*/ */
public void setPaymentTermId(Long paymentTermId){ public void setPaymentTermId(Long paymentTermId){
this.paymentTermId = paymentTermId ; //2 this.paymentTermId = paymentTermId ;
this.modify("payment_term_id",paymentTermId); this.modify("payment_term_id",paymentTermId);
} }
...@@ -780,7 +780,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -780,7 +780,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [分析账户] * 设置 [分析账户]
*/ */
public void setAccountAnalyticId(Long accountAnalyticId){ public void setAccountAnalyticId(Long accountAnalyticId){
this.accountAnalyticId = accountAnalyticId ; //2 this.accountAnalyticId = accountAnalyticId ;
this.modify("account_analytic_id",accountAnalyticId); this.modify("account_analytic_id",accountAnalyticId);
} }
...@@ -788,7 +788,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -788,7 +788,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [税科目调整] * 设置 [税科目调整]
*/ */
public void setFiscalPositionId(Long fiscalPositionId){ public void setFiscalPositionId(Long fiscalPositionId){
this.fiscalPositionId = fiscalPositionId ; //2 this.fiscalPositionId = fiscalPositionId ;
this.modify("fiscal_position_id",fiscalPositionId); this.modify("fiscal_position_id",fiscalPositionId);
} }
...@@ -796,7 +796,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -796,7 +796,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [日记账] * 设置 [日记账]
*/ */
public void setJournalId(Long journalId){ public void setJournalId(Long journalId){
this.journalId = journalId ; //2 this.journalId = journalId ;
this.modify("journal_id",journalId); this.modify("journal_id",journalId);
} }
...@@ -804,7 +804,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -804,7 +804,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [收入/费用科目] * 设置 [收入/费用科目]
*/ */
public void setAccountLineId(Long accountLineId){ public void setAccountLineId(Long accountLineId){
this.accountLineId = accountLineId ; //2 this.accountLineId = accountLineId ;
this.modify("account_line_id",accountLineId); this.modify("account_line_id",accountLineId);
} }
...@@ -812,7 +812,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -812,7 +812,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [销售团队] * 设置 [销售团队]
*/ */
public void setTeamId(Long teamId){ public void setTeamId(Long teamId){
this.teamId = teamId ; //2 this.teamId = teamId ;
this.modify("team_id",teamId); this.modify("team_id",teamId);
} }
...@@ -820,7 +820,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -820,7 +820,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [币种] * 设置 [币种]
*/ */
public void setCurrencyId(Long currencyId){ public void setCurrencyId(Long currencyId){
this.currencyId = currencyId ; //2 this.currencyId = currencyId ;
this.modify("currency_id",currencyId); this.modify("currency_id",currencyId);
} }
...@@ -828,7 +828,7 @@ public class Account_invoice_report extends EntityMP implements Serializable { ...@@ -828,7 +828,7 @@ public class Account_invoice_report extends EntityMP implements Serializable {
* 设置 [发票] * 设置 [发票]
*/ */
public void setInvoiceId(Long invoiceId){ public void setInvoiceId(Long invoiceId){
this.invoiceId = invoiceId ; //2 this.invoiceId = invoiceId ;
this.modify("invoice_id",invoiceId); this.modify("invoice_id",invoiceId);
} }
......
...@@ -91,7 +91,7 @@ public class Account_invoice_send extends EntityMP implements Serializable { ...@@ -91,7 +91,7 @@ public class Account_invoice_send extends EntityMP implements Serializable {
@TableField(value = "printed") @TableField(value = "printed")
@JSONField(name = "printed") @JSONField(name = "printed")
@JsonProperty("printed") @JsonProperty("printed")
private Boolean printed; private Object printed;
/** /**
* 附件 * 附件
*/ */
...@@ -120,7 +120,7 @@ public class Account_invoice_send extends EntityMP implements Serializable { ...@@ -120,7 +120,7 @@ public class Account_invoice_send extends EntityMP implements Serializable {
@TableField(value = "snailmail_is_letter") @TableField(value = "snailmail_is_letter")
@JSONField(name = "snailmail_is_letter") @JSONField(name = "snailmail_is_letter")
@JsonProperty("snailmail_is_letter") @JsonProperty("snailmail_is_letter")
private Boolean snailmailIsLetter; private Object snailmailIsLetter;
/** /**
* ID * ID
*/ */
...@@ -136,7 +136,7 @@ public class Account_invoice_send extends EntityMP implements Serializable { ...@@ -136,7 +136,7 @@ public class Account_invoice_send extends EntityMP implements Serializable {
@TableField(value = "is_print") @TableField(value = "is_print")
@JSONField(name = "is_print") @JSONField(name = "is_print")
@JsonProperty("is_print") @JsonProperty("is_print")
private Boolean isPrint; private Object isPrint;
/** /**
* 业务伙伴 * 业务伙伴
*/ */
...@@ -225,7 +225,7 @@ public class Account_invoice_send extends EntityMP implements Serializable { ...@@ -225,7 +225,7 @@ public class Account_invoice_send extends EntityMP implements Serializable {
@TableField(value = "is_email") @TableField(value = "is_email")
@JSONField(name = "is_email") @JSONField(name = "is_email")
@JsonProperty("is_email") @JsonProperty("is_email")
private Boolean isEmail; private Object isEmail;
/** /**
* 上级消息 * 上级消息
*/ */
...@@ -584,24 +584,24 @@ public class Account_invoice_send extends EntityMP implements Serializable { ...@@ -584,24 +584,24 @@ public class Account_invoice_send extends EntityMP implements Serializable {
/** /**
* 设置 [已打印] * 设置 [已打印]
*/ */
public void setPrinted(Boolean printed){ public void setPrinted(Object printed){
this.printed = printed ; //2 this.printed = printed ;
this.modify("printed",printed); this.modify("printed",printed);
} }
/** /**
* 设置 [透过邮递] * 设置 [透过邮递]
*/ */
public void setSnailmailIsLetter(Boolean snailmailIsLetter){ public void setSnailmailIsLetter(Object snailmailIsLetter){
this.snailmailIsLetter = snailmailIsLetter ; //2 this.snailmailIsLetter = snailmailIsLetter ;
this.modify("snailmail_is_letter",snailmailIsLetter); this.modify("snailmail_is_letter",snailmailIsLetter);
} }
/** /**
* 设置 [打印] * 设置 [打印]
*/ */
public void setIsPrint(Boolean isPrint){ public void setIsPrint(Object isPrint){
this.isPrint = isPrint ; //2 this.isPrint = isPrint ;
this.modify("is_print",isPrint); this.modify("is_print",isPrint);
} }
...@@ -609,15 +609,15 @@ public class Account_invoice_send extends EntityMP implements Serializable { ...@@ -609,15 +609,15 @@ public class Account_invoice_send extends EntityMP implements Serializable {
* 设置 [邮戳(s)] * 设置 [邮戳(s)]
*/ */
public void setSnailmailCost(Double snailmailCost){ public void setSnailmailCost(Double snailmailCost){
this.snailmailCost = snailmailCost ; //2 this.snailmailCost = snailmailCost ;
this.modify("snailmail_cost",snailmailCost); this.modify("snailmail_cost",snailmailCost);
} }
/** /**
* 设置 [EMail] * 设置 [EMail]
*/ */
public void setIsEmail(Boolean isEmail){ public void setIsEmail(Object isEmail){
this.isEmail = isEmail ; //2 this.isEmail = isEmail ;
this.modify("is_email",isEmail); this.modify("is_email",isEmail);
} }
...@@ -625,7 +625,7 @@ public class Account_invoice_send extends EntityMP implements Serializable { ...@@ -625,7 +625,7 @@ public class Account_invoice_send extends EntityMP implements Serializable {
* 设置 [邮件撰写者] * 设置 [邮件撰写者]
*/ */
public void setComposerId(Long composerId){ public void setComposerId(Long composerId){
this.composerId = composerId ; //2 this.composerId = composerId ;
this.modify("composer_id",composerId); this.modify("composer_id",composerId);
} }
...@@ -633,7 +633,7 @@ public class Account_invoice_send extends EntityMP implements Serializable { ...@@ -633,7 +633,7 @@ public class Account_invoice_send extends EntityMP implements Serializable {
* 设置 [使用模版] * 设置 [使用模版]
*/ */
public void setTemplateId(Long templateId){ public void setTemplateId(Long templateId){
this.templateId = templateId ; //2 this.templateId = templateId ;
this.modify("template_id",templateId); this.modify("template_id",templateId);
} }
......
...@@ -47,7 +47,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -47,7 +47,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
@TableField(value = "manual") @TableField(value = "manual")
@JSONField(name = "manual") @JSONField(name = "manual")
@JsonProperty("manual") @JsonProperty("manual")
private Boolean manual; private Object manual;
/** /**
* 总金额 * 总金额
*/ */
...@@ -329,8 +329,8 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -329,8 +329,8 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
/** /**
* 设置 [手动] * 设置 [手动]
*/ */
public void setManual(Boolean manual){ public void setManual(Object manual){
this.manual = manual ; //2 this.manual = manual ;
this.modify("manual",manual); this.modify("manual",manual);
} }
...@@ -338,7 +338,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -338,7 +338,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
* 设置 [基础] * 设置 [基础]
*/ */
public void setBase(BigDecimal base){ public void setBase(BigDecimal base){
this.base = base ; //2 this.base = base ;
this.modify("base",base); this.modify("base",base);
} }
...@@ -346,7 +346,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -346,7 +346,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
* 设置 [税率金额] * 设置 [税率金额]
*/ */
public void setAmount(BigDecimal amount){ public void setAmount(BigDecimal amount){
this.amount = amount ; //2 this.amount = amount ;
this.modify("amount",amount); this.modify("amount",amount);
} }
...@@ -354,7 +354,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -354,7 +354,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
* 设置 [税说明] * 设置 [税说明]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -362,7 +362,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -362,7 +362,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
* 设置 [序号] * 设置 [序号]
*/ */
public void setSequence(Integer sequence){ public void setSequence(Integer sequence){
this.sequence = sequence ; //2 this.sequence = sequence ;
this.modify("sequence",sequence); this.modify("sequence",sequence);
} }
...@@ -370,7 +370,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -370,7 +370,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
* 设置 [金额差异] * 设置 [金额差异]
*/ */
public void setAmountRounding(BigDecimal amountRounding){ public void setAmountRounding(BigDecimal amountRounding){
this.amountRounding = amountRounding ; //2 this.amountRounding = amountRounding ;
this.modify("amount_rounding",amountRounding); this.modify("amount_rounding",amountRounding);
} }
...@@ -378,7 +378,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -378,7 +378,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
* 设置 [税率科目] * 设置 [税率科目]
*/ */
public void setAccountId(Long accountId){ public void setAccountId(Long accountId){
this.accountId = accountId ; //2 this.accountId = accountId ;
this.modify("account_id",accountId); this.modify("account_id",accountId);
} }
...@@ -386,7 +386,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -386,7 +386,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
* 设置 [发票] * 设置 [发票]
*/ */
public void setInvoiceId(Long invoiceId){ public void setInvoiceId(Long invoiceId){
this.invoiceId = invoiceId ; //2 this.invoiceId = invoiceId ;
this.modify("invoice_id",invoiceId); this.modify("invoice_id",invoiceId);
} }
...@@ -394,7 +394,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -394,7 +394,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
* 设置 [币种] * 设置 [币种]
*/ */
public void setCurrencyId(Long currencyId){ public void setCurrencyId(Long currencyId){
this.currencyId = currencyId ; //2 this.currencyId = currencyId ;
this.modify("currency_id",currencyId); this.modify("currency_id",currencyId);
} }
...@@ -402,7 +402,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -402,7 +402,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
* 设置 [分析账户] * 设置 [分析账户]
*/ */
public void setAccountAnalyticId(Long accountAnalyticId){ public void setAccountAnalyticId(Long accountAnalyticId){
this.accountAnalyticId = accountAnalyticId ; //2 this.accountAnalyticId = accountAnalyticId ;
this.modify("account_analytic_id",accountAnalyticId); this.modify("account_analytic_id",accountAnalyticId);
} }
...@@ -410,7 +410,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -410,7 +410,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
...@@ -418,7 +418,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable { ...@@ -418,7 +418,7 @@ public class Account_invoice_tax extends EntityMP implements Serializable {
* 设置 [税率] * 设置 [税率]
*/ */
public void setTaxId(Long taxId){ public void setTaxId(Long taxId){
this.taxId = taxId ; //2 this.taxId = taxId ;
this.modify("tax_id",taxId); this.modify("tax_id",taxId);
} }
......
...@@ -122,7 +122,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -122,7 +122,7 @@ public class Account_move extends EntityMP implements Serializable {
@TableField(value = "auto_reverse") @TableField(value = "auto_reverse")
@JSONField(name = "auto_reverse") @JSONField(name = "auto_reverse")
@JsonProperty("auto_reverse") @JsonProperty("auto_reverse")
private Boolean autoReverse; private Object autoReverse;
/** /**
* 日期 * 日期
*/ */
...@@ -378,7 +378,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -378,7 +378,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [内部备注] * 设置 [内部备注]
*/ */
public void setNarration(String narration){ public void setNarration(String narration){
this.narration = narration ; //2 this.narration = narration ;
this.modify("narration",narration); this.modify("narration",narration);
} }
...@@ -386,7 +386,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -386,7 +386,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [匹配百分比] * 设置 [匹配百分比]
*/ */
public void setMatchedPercentage(Double matchedPercentage){ public void setMatchedPercentage(Double matchedPercentage){
this.matchedPercentage = matchedPercentage ; //2 this.matchedPercentage = matchedPercentage ;
this.modify("matched_percentage",matchedPercentage); this.modify("matched_percentage",matchedPercentage);
} }
...@@ -394,7 +394,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -394,7 +394,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [号码] * 设置 [号码]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -402,7 +402,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -402,7 +402,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [状态] * 设置 [状态]
*/ */
public void setState(String state){ public void setState(String state){
this.state = state ; //2 this.state = state ;
this.modify("state",state); this.modify("state",state);
} }
...@@ -410,15 +410,15 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -410,15 +410,15 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [参考] * 设置 [参考]
*/ */
public void setRef(String ref){ public void setRef(String ref){
this.ref = ref ; //2 this.ref = ref ;
this.modify("ref",ref); this.modify("ref",ref);
} }
/** /**
* 设置 [自动撤销] * 设置 [自动撤销]
*/ */
public void setAutoReverse(Boolean autoReverse){ public void setAutoReverse(Object autoReverse){
this.autoReverse = autoReverse ; //2 this.autoReverse = autoReverse ;
this.modify("auto_reverse",autoReverse); this.modify("auto_reverse",autoReverse);
} }
...@@ -426,7 +426,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -426,7 +426,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [日期] * 设置 [日期]
*/ */
public void setDate(Timestamp date){ public void setDate(Timestamp date){
this.date = date ; //2 this.date = date ;
this.modify("date",date); this.modify("date",date);
} }
...@@ -444,7 +444,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -444,7 +444,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [金额] * 设置 [金额]
*/ */
public void setAmount(BigDecimal amount){ public void setAmount(BigDecimal amount){
this.amount = amount ; //2 this.amount = amount ;
this.modify("amount",amount); this.modify("amount",amount);
} }
...@@ -452,7 +452,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -452,7 +452,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [撤销日期] * 设置 [撤销日期]
*/ */
public void setReverseDate(Timestamp reverseDate){ public void setReverseDate(Timestamp reverseDate){
this.reverseDate = reverseDate ; //2 this.reverseDate = reverseDate ;
this.modify("reverse_date",reverseDate); this.modify("reverse_date",reverseDate);
} }
...@@ -470,7 +470,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -470,7 +470,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [库存移动] * 设置 [库存移动]
*/ */
public void setStockMoveId(Long stockMoveId){ public void setStockMoveId(Long stockMoveId){
this.stockMoveId = stockMoveId ; //2 this.stockMoveId = stockMoveId ;
this.modify("stock_move_id",stockMoveId); this.modify("stock_move_id",stockMoveId);
} }
...@@ -478,7 +478,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -478,7 +478,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
...@@ -486,7 +486,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -486,7 +486,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [日记账] * 设置 [日记账]
*/ */
public void setJournalId(Long journalId){ public void setJournalId(Long journalId){
this.journalId = journalId ; //2 this.journalId = journalId ;
this.modify("journal_id",journalId); this.modify("journal_id",journalId);
} }
...@@ -494,7 +494,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -494,7 +494,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [税率现金收付制分录] * 设置 [税率现金收付制分录]
*/ */
public void setTaxCashBasisRecId(Long taxCashBasisRecId){ public void setTaxCashBasisRecId(Long taxCashBasisRecId){
this.taxCashBasisRecId = taxCashBasisRecId ; //2 this.taxCashBasisRecId = taxCashBasisRecId ;
this.modify("tax_cash_basis_rec_id",taxCashBasisRecId); this.modify("tax_cash_basis_rec_id",taxCashBasisRecId);
} }
...@@ -502,7 +502,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -502,7 +502,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [业务伙伴] * 设置 [业务伙伴]
*/ */
public void setPartnerId(Long partnerId){ public void setPartnerId(Long partnerId){
this.partnerId = partnerId ; //2 this.partnerId = partnerId ;
this.modify("partner_id",partnerId); this.modify("partner_id",partnerId);
} }
...@@ -510,7 +510,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -510,7 +510,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [币种] * 设置 [币种]
*/ */
public void setCurrencyId(Long currencyId){ public void setCurrencyId(Long currencyId){
this.currencyId = currencyId ; //2 this.currencyId = currencyId ;
this.modify("currency_id",currencyId); this.modify("currency_id",currencyId);
} }
...@@ -518,7 +518,7 @@ public class Account_move extends EntityMP implements Serializable { ...@@ -518,7 +518,7 @@ public class Account_move extends EntityMP implements Serializable {
* 设置 [撤销分录] * 设置 [撤销分录]
*/ */
public void setReverseEntryId(Long reverseEntryId){ public void setReverseEntryId(Long reverseEntryId){
this.reverseEntryId = reverseEntryId ; //2 this.reverseEntryId = reverseEntryId ;
this.modify("reverse_entry_id",reverseEntryId); this.modify("reverse_entry_id",reverseEntryId);
} }
......
...@@ -166,7 +166,7 @@ public class Account_move_reversal extends EntityMP implements Serializable { ...@@ -166,7 +166,7 @@ public class Account_move_reversal extends EntityMP implements Serializable {
* 设置 [撤销日期] * 设置 [撤销日期]
*/ */
public void setDate(Timestamp date){ public void setDate(Timestamp date){
this.date = date ; //2 this.date = date ;
this.modify("date",date); this.modify("date",date);
} }
...@@ -184,7 +184,7 @@ public class Account_move_reversal extends EntityMP implements Serializable { ...@@ -184,7 +184,7 @@ public class Account_move_reversal extends EntityMP implements Serializable {
* 设置 [用特定的日记账] * 设置 [用特定的日记账]
*/ */
public void setJournalId(Long journalId){ public void setJournalId(Long journalId){
this.journalId = journalId ; //2 this.journalId = journalId ;
this.modify("journal_id",journalId); this.modify("journal_id",journalId);
} }
......
...@@ -281,7 +281,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable ...@@ -281,7 +281,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable
* 设置 [外币金额] * 设置 [外币金额]
*/ */
public void setAmountCurrency(BigDecimal amountCurrency){ public void setAmountCurrency(BigDecimal amountCurrency){
this.amountCurrency = amountCurrency ; //2 this.amountCurrency = amountCurrency ;
this.modify("amount_currency",amountCurrency); this.modify("amount_currency",amountCurrency);
} }
...@@ -289,7 +289,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable ...@@ -289,7 +289,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable
* 设置 [金额] * 设置 [金额]
*/ */
public void setAmount(BigDecimal amount){ public void setAmount(BigDecimal amount){
this.amount = amount ; //2 this.amount = amount ;
this.modify("amount",amount); this.modify("amount",amount);
} }
...@@ -297,7 +297,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable ...@@ -297,7 +297,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable
* 设置 [匹配明细的最大时间] * 设置 [匹配明细的最大时间]
*/ */
public void setMaxDate(Timestamp maxDate){ public void setMaxDate(Timestamp maxDate){
this.maxDate = maxDate ; //2 this.maxDate = maxDate ;
this.modify("max_date",maxDate); this.modify("max_date",maxDate);
} }
...@@ -315,7 +315,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable ...@@ -315,7 +315,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
...@@ -323,7 +323,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable ...@@ -323,7 +323,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable
* 设置 [币种] * 设置 [币种]
*/ */
public void setCurrencyId(Long currencyId){ public void setCurrencyId(Long currencyId){
this.currencyId = currencyId ; //2 this.currencyId = currencyId ;
this.modify("currency_id",currencyId); this.modify("currency_id",currencyId);
} }
...@@ -331,7 +331,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable ...@@ -331,7 +331,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable
* 设置 [完全核销] * 设置 [完全核销]
*/ */
public void setFullReconcileId(Long fullReconcileId){ public void setFullReconcileId(Long fullReconcileId){
this.fullReconcileId = fullReconcileId ; //2 this.fullReconcileId = fullReconcileId ;
this.modify("full_reconcile_id",fullReconcileId); this.modify("full_reconcile_id",fullReconcileId);
} }
...@@ -339,7 +339,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable ...@@ -339,7 +339,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable
* 设置 [借方移动] * 设置 [借方移动]
*/ */
public void setDebitMoveId(Long debitMoveId){ public void setDebitMoveId(Long debitMoveId){
this.debitMoveId = debitMoveId ; //2 this.debitMoveId = debitMoveId ;
this.modify("debit_move_id",debitMoveId); this.modify("debit_move_id",debitMoveId);
} }
...@@ -347,7 +347,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable ...@@ -347,7 +347,7 @@ public class Account_partial_reconcile extends EntityMP implements Serializable
* 设置 [贷方凭证] * 设置 [贷方凭证]
*/ */
public void setCreditMoveId(Long creditMoveId){ public void setCreditMoveId(Long creditMoveId){
this.creditMoveId = creditMoveId ; //2 this.creditMoveId = creditMoveId ;
this.modify("credit_move_id",creditMoveId); this.modify("credit_move_id",creditMoveId);
} }
......
...@@ -157,7 +157,7 @@ public class Account_payment_method extends EntityMP implements Serializable { ...@@ -157,7 +157,7 @@ public class Account_payment_method extends EntityMP implements Serializable {
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -165,7 +165,7 @@ public class Account_payment_method extends EntityMP implements Serializable { ...@@ -165,7 +165,7 @@ public class Account_payment_method extends EntityMP implements Serializable {
* 设置 [付款类型] * 设置 [付款类型]
*/ */
public void setPaymentType(String paymentType){ public void setPaymentType(String paymentType){
this.paymentType = paymentType ; //2 this.paymentType = paymentType ;
this.modify("payment_type",paymentType); this.modify("payment_type",paymentType);
} }
...@@ -173,7 +173,7 @@ public class Account_payment_method extends EntityMP implements Serializable { ...@@ -173,7 +173,7 @@ public class Account_payment_method extends EntityMP implements Serializable {
* 设置 [代码] * 设置 [代码]
*/ */
public void setCode(String code){ public void setCode(String code){
this.code = code ; //2 this.code = code ;
this.modify("code",code); this.modify("code",code);
} }
......
...@@ -78,7 +78,7 @@ public class Account_payment_term extends EntityMP implements Serializable { ...@@ -78,7 +78,7 @@ public class Account_payment_term extends EntityMP implements Serializable {
@TableField(value = "active") @TableField(value = "active")
@JSONField(name = "active") @JSONField(name = "active")
@JsonProperty("active") @JsonProperty("active")
private Boolean active; private Object active;
/** /**
* 付款条款 * 付款条款
*/ */
...@@ -193,15 +193,15 @@ public class Account_payment_term extends EntityMP implements Serializable { ...@@ -193,15 +193,15 @@ public class Account_payment_term extends EntityMP implements Serializable {
* 设置 [序号] * 设置 [序号]
*/ */
public void setSequence(Integer sequence){ public void setSequence(Integer sequence){
this.sequence = sequence ; //2 this.sequence = sequence ;
this.modify("sequence",sequence); this.modify("sequence",sequence);
} }
/** /**
* 设置 [有效] * 设置 [有效]
*/ */
public void setActive(Boolean active){ public void setActive(Object active){
this.active = active ; //2 this.active = active ;
this.modify("active",active); this.modify("active",active);
} }
...@@ -209,7 +209,7 @@ public class Account_payment_term extends EntityMP implements Serializable { ...@@ -209,7 +209,7 @@ public class Account_payment_term extends EntityMP implements Serializable {
* 设置 [付款条款] * 设置 [付款条款]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -217,7 +217,7 @@ public class Account_payment_term extends EntityMP implements Serializable { ...@@ -217,7 +217,7 @@ public class Account_payment_term extends EntityMP implements Serializable {
* 设置 [发票描述] * 设置 [发票描述]
*/ */
public void setNote(String note){ public void setNote(String note){
this.note = note ; //2 this.note = note ;
this.modify("note",note); this.modify("note",note);
} }
...@@ -225,7 +225,7 @@ public class Account_payment_term extends EntityMP implements Serializable { ...@@ -225,7 +225,7 @@ public class Account_payment_term extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
......
...@@ -202,7 +202,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable ...@@ -202,7 +202,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable
* 设置 [天数] * 设置 [天数]
*/ */
public void setDays(Integer days){ public void setDays(Integer days){
this.days = days ; //2 this.days = days ;
this.modify("days",days); this.modify("days",days);
} }
...@@ -210,7 +210,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable ...@@ -210,7 +210,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable
* 设置 [序号] * 设置 [序号]
*/ */
public void setSequence(Integer sequence){ public void setSequence(Integer sequence){
this.sequence = sequence ; //2 this.sequence = sequence ;
this.modify("sequence",sequence); this.modify("sequence",sequence);
} }
...@@ -218,7 +218,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable ...@@ -218,7 +218,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable
* 设置 [类型] * 设置 [类型]
*/ */
public void setValue(String value){ public void setValue(String value){
this.value = value ; //2 this.value = value ;
this.modify("value",value); this.modify("value",value);
} }
...@@ -226,7 +226,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable ...@@ -226,7 +226,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable
* 设置 [值] * 设置 [值]
*/ */
public void setValueAmount(Double valueAmount){ public void setValueAmount(Double valueAmount){
this.valueAmount = valueAmount ; //2 this.valueAmount = valueAmount ;
this.modify("value_amount",valueAmount); this.modify("value_amount",valueAmount);
} }
...@@ -234,7 +234,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable ...@@ -234,7 +234,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable
* 设置 [日期] * 设置 [日期]
*/ */
public void setDayOfTheMonth(Integer dayOfTheMonth){ public void setDayOfTheMonth(Integer dayOfTheMonth){
this.dayOfTheMonth = dayOfTheMonth ; //2 this.dayOfTheMonth = dayOfTheMonth ;
this.modify("day_of_the_month",dayOfTheMonth); this.modify("day_of_the_month",dayOfTheMonth);
} }
...@@ -242,7 +242,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable ...@@ -242,7 +242,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable
* 设置 [选项] * 设置 [选项]
*/ */
public void setOption(String option){ public void setOption(String option){
this.option = option ; //2 this.option = option ;
this.modify("option",option); this.modify("option",option);
} }
...@@ -250,7 +250,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable ...@@ -250,7 +250,7 @@ public class Account_payment_term_line extends EntityMP implements Serializable
* 设置 [付款条款] * 设置 [付款条款]
*/ */
public void setPaymentId(Long paymentId){ public void setPaymentId(Long paymentId){
this.paymentId = paymentId ; //2 this.paymentId = paymentId ;
this.modify("payment_id",paymentId); this.modify("payment_id",paymentId);
} }
......
...@@ -74,7 +74,7 @@ public class Account_print_journal extends EntityMP implements Serializable { ...@@ -74,7 +74,7 @@ public class Account_print_journal extends EntityMP implements Serializable {
@TableField(value = "amount_currency") @TableField(value = "amount_currency")
@JSONField(name = "amount_currency") @JSONField(name = "amount_currency")
@JsonProperty("amount_currency") @JsonProperty("amount_currency")
private Boolean amountCurrency; private Object amountCurrency;
/** /**
* 分录排序 按 * 分录排序 按
*/ */
...@@ -207,7 +207,7 @@ public class Account_print_journal extends EntityMP implements Serializable { ...@@ -207,7 +207,7 @@ public class Account_print_journal extends EntityMP implements Serializable {
* 设置 [结束日期] * 设置 [结束日期]
*/ */
public void setDateTo(Timestamp dateTo){ public void setDateTo(Timestamp dateTo){
this.dateTo = dateTo ; //2 this.dateTo = dateTo ;
this.modify("date_to",dateTo); this.modify("date_to",dateTo);
} }
...@@ -224,8 +224,8 @@ public class Account_print_journal extends EntityMP implements Serializable { ...@@ -224,8 +224,8 @@ public class Account_print_journal extends EntityMP implements Serializable {
/** /**
* 设置 [使用货币] * 设置 [使用货币]
*/ */
public void setAmountCurrency(Boolean amountCurrency){ public void setAmountCurrency(Object amountCurrency){
this.amountCurrency = amountCurrency ; //2 this.amountCurrency = amountCurrency ;
this.modify("amount_currency",amountCurrency); this.modify("amount_currency",amountCurrency);
} }
...@@ -233,7 +233,7 @@ public class Account_print_journal extends EntityMP implements Serializable { ...@@ -233,7 +233,7 @@ public class Account_print_journal extends EntityMP implements Serializable {
* 设置 [分录排序 按] * 设置 [分录排序 按]
*/ */
public void setSortSelection(String sortSelection){ public void setSortSelection(String sortSelection){
this.sortSelection = sortSelection ; //2 this.sortSelection = sortSelection ;
this.modify("sort_selection",sortSelection); this.modify("sort_selection",sortSelection);
} }
...@@ -241,7 +241,7 @@ public class Account_print_journal extends EntityMP implements Serializable { ...@@ -241,7 +241,7 @@ public class Account_print_journal extends EntityMP implements Serializable {
* 设置 [开始日期] * 设置 [开始日期]
*/ */
public void setDateFrom(Timestamp dateFrom){ public void setDateFrom(Timestamp dateFrom){
this.dateFrom = dateFrom ; //2 this.dateFrom = dateFrom ;
this.modify("date_from",dateFrom); this.modify("date_from",dateFrom);
} }
...@@ -259,7 +259,7 @@ public class Account_print_journal extends EntityMP implements Serializable { ...@@ -259,7 +259,7 @@ public class Account_print_journal extends EntityMP implements Serializable {
* 设置 [目标分录] * 设置 [目标分录]
*/ */
public void setTargetMove(String targetMove){ public void setTargetMove(String targetMove){
this.targetMove = targetMove ; //2 this.targetMove = targetMove ;
this.modify("target_move",targetMove); this.modify("target_move",targetMove);
} }
...@@ -267,7 +267,7 @@ public class Account_print_journal extends EntityMP implements Serializable { ...@@ -267,7 +267,7 @@ public class Account_print_journal extends EntityMP implements Serializable {
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(Long companyId){
this.companyId = companyId ; //2 this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
......
...@@ -279,7 +279,7 @@ public class Account_setup_bank_manual_config extends EntityMP implements Serial ...@@ -279,7 +279,7 @@ public class Account_setup_bank_manual_config extends EntityMP implements Serial
* 设置 [代码] * 设置 [代码]
*/ */
public void setNewJournalCode(String newJournalCode){ public void setNewJournalCode(String newJournalCode){
this.newJournalCode = newJournalCode ; //2 this.newJournalCode = newJournalCode ;
this.modify("new_journal_code",newJournalCode); this.modify("new_journal_code",newJournalCode);
} }
...@@ -287,7 +287,7 @@ public class Account_setup_bank_manual_config extends EntityMP implements Serial ...@@ -287,7 +287,7 @@ public class Account_setup_bank_manual_config extends EntityMP implements Serial
* 设置 [创建或链接选项] * 设置 [创建或链接选项]
*/ */
public void setCreateOrLinkOption(String createOrLinkOption){ public void setCreateOrLinkOption(String createOrLinkOption){
this.createOrLinkOption = createOrLinkOption ; //2 this.createOrLinkOption = createOrLinkOption ;
this.modify("create_or_link_option",createOrLinkOption); this.modify("create_or_link_option",createOrLinkOption);
} }
...@@ -295,7 +295,7 @@ public class Account_setup_bank_manual_config extends EntityMP implements Serial ...@@ -295,7 +295,7 @@ public class Account_setup_bank_manual_config extends EntityMP implements Serial
* 设置 [业务伙伴银行账户] * 设置 [业务伙伴银行账户]
*/ */
public void setResPartnerBankId(Long resPartnerBankId){ public void setResPartnerBankId(Long resPartnerBankId){
this.resPartnerBankId = resPartnerBankId ; //2 this.resPartnerBankId = resPartnerBankId ;
this.modify("res_partner_bank_id",resPartnerBankId); this.modify("res_partner_bank_id",resPartnerBankId);
} }
......
...@@ -149,7 +149,7 @@ public class Account_tax_group extends EntityMP implements Serializable { ...@@ -149,7 +149,7 @@ public class Account_tax_group extends EntityMP implements Serializable {
* 设置 [序号] * 设置 [序号]
*/ */
public void setSequence(Integer sequence){ public void setSequence(Integer sequence){
this.sequence = sequence ; //2 this.sequence = sequence ;
this.modify("sequence",sequence); this.modify("sequence",sequence);
} }
...@@ -157,7 +157,7 @@ public class Account_tax_group extends EntityMP implements Serializable { ...@@ -157,7 +157,7 @@ public class Account_tax_group extends EntityMP implements Serializable {
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(String name){
this.name = name ; //2 this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册