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

xignzi006 发布系统代码

上级 6e5bd7fc
...@@ -49,7 +49,7 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -49,7 +49,7 @@ public class Account_account_tag extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("write_date") @JsonProperty("write_date")
private Timestamp writeDate; private javatype writeDate;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -57,21 +57,21 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -57,21 +57,21 @@ public class Account_account_tag extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("__last_update") @JsonProperty("__last_update")
private Timestamp LastUpdate; private javatype LastUpdate;
/** /**
* 显示名称 * 显示名称
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "display_name") @JSONField(name = "display_name")
@JsonProperty("display_name") @JsonProperty("display_name")
private String displayName; private javatype displayName;
/** /**
* 名称 * 名称
*/ */
@TableField(value = "name") @TableField(value = "name")
@JSONField(name = "name") @JSONField(name = "name")
@JsonProperty("name") @JsonProperty("name")
private String name; private javatype name;
/** /**
* ID * ID
*/ */
...@@ -79,21 +79,21 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -79,21 +79,21 @@ public class Account_account_tag extends EntityMP implements Serializable {
@TableId(value= "id",type=IdType.AUTO) @TableId(value= "id",type=IdType.AUTO)
@JSONField(name = "id") @JSONField(name = "id")
@JsonProperty("id") @JsonProperty("id")
private Long id; private javatype id;
/** /**
* 适用范围 * 适用范围
*/ */
@TableField(value = "applicability") @TableField(value = "applicability")
@JSONField(name = "applicability") @JSONField(name = "applicability")
@JsonProperty("applicability") @JsonProperty("applicability")
private String applicability; private javatype applicability;
/** /**
* 有效 * 有效
*/ */
@TableField(value = "active") @TableField(value = "active")
@JSONField(name = "active") @JSONField(name = "active")
@JsonProperty("active") @JsonProperty("active")
private Integer active; private javatype active;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -102,28 +102,28 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -102,28 +102,28 @@ public class Account_account_tag extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("create_date") @JsonProperty("create_date")
private Timestamp createDate; private javatype createDate;
/** /**
* 颜色索引 * 颜色索引
*/ */
@TableField(value = "color") @TableField(value = "color")
@JSONField(name = "color") @JSONField(name = "color")
@JsonProperty("color") @JsonProperty("color")
private Integer color; private javatype color;
/** /**
* 最后更新人 * 最后更新人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "write_uid_text") @JSONField(name = "write_uid_text")
@JsonProperty("write_uid_text") @JsonProperty("write_uid_text")
private String writeUidText; private javatype writeUidText;
/** /**
* 创建人 * 创建人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "create_uid_text") @JSONField(name = "create_uid_text")
@JsonProperty("create_uid_text") @JsonProperty("create_uid_text")
private String createUidText; private javatype createUidText;
/** /**
* 创建人 * 创建人
*/ */
...@@ -131,7 +131,7 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -131,7 +131,7 @@ public class Account_account_tag extends EntityMP implements Serializable {
@TableField(value = "create_uid" , fill = FieldFill.INSERT) @TableField(value = "create_uid" , fill = FieldFill.INSERT)
@JSONField(name = "create_uid") @JSONField(name = "create_uid")
@JsonProperty("create_uid") @JsonProperty("create_uid")
private Long createUid; private javatype createUid;
/** /**
* 最后更新人 * 最后更新人
*/ */
...@@ -139,7 +139,7 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -139,7 +139,7 @@ public class Account_account_tag extends EntityMP implements Serializable {
@TableField(value = "write_uid") @TableField(value = "write_uid")
@JSONField(name = "write_uid") @JSONField(name = "write_uid")
@JsonProperty("write_uid") @JsonProperty("write_uid")
private Long writeUid; private javatype writeUid;
/** /**
* *
...@@ -162,7 +162,7 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -162,7 +162,7 @@ public class Account_account_tag extends EntityMP implements Serializable {
/** /**
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(javatype name){
this.name = name ; this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -170,7 +170,7 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -170,7 +170,7 @@ public class Account_account_tag extends EntityMP implements Serializable {
/** /**
* 设置 [适用范围] * 设置 [适用范围]
*/ */
public void setApplicability(String applicability){ public void setApplicability(javatype applicability){
this.applicability = applicability ; this.applicability = applicability ;
this.modify("applicability",applicability); this.modify("applicability",applicability);
} }
...@@ -178,7 +178,7 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -178,7 +178,7 @@ public class Account_account_tag extends EntityMP implements Serializable {
/** /**
* 设置 [有效] * 设置 [有效]
*/ */
public void setActive(Integer active){ public void setActive(javatype active){
this.active = active ; this.active = active ;
this.modify("active",active); this.modify("active",active);
} }
...@@ -186,7 +186,7 @@ public class Account_account_tag extends EntityMP implements Serializable { ...@@ -186,7 +186,7 @@ public class Account_account_tag extends EntityMP implements Serializable {
/** /**
* 设置 [颜色索引] * 设置 [颜色索引]
*/ */
public void setColor(Integer color){ public void setColor(javatype color){
this.color = color ; this.color = color ;
this.modify("color",color); this.modify("color",color);
} }
......
...@@ -47,28 +47,28 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -47,28 +47,28 @@ public class Account_account_template extends EntityMP implements Serializable {
@TableField(value = "code") @TableField(value = "code")
@JSONField(name = "code") @JSONField(name = "code")
@JsonProperty("code") @JsonProperty("code")
private String code; private javatype code;
/** /**
* 科目标签 * 科目标签
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "tag_ids") @JSONField(name = "tag_ids")
@JsonProperty("tag_ids") @JsonProperty("tag_ids")
private String tagIds; private javatype tagIds;
/** /**
* 选项创建 * 选项创建
*/ */
@TableField(value = "nocreate") @TableField(value = "nocreate")
@JSONField(name = "nocreate") @JSONField(name = "nocreate")
@JsonProperty("nocreate") @JsonProperty("nocreate")
private Integer nocreate; private javatype nocreate;
/** /**
* 默认税 * 默认税
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "tax_ids") @JSONField(name = "tax_ids")
@JsonProperty("tax_ids") @JsonProperty("tax_ids")
private String taxIds; private javatype taxIds;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -77,14 +77,14 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -77,14 +77,14 @@ public class Account_account_template extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("create_date") @JsonProperty("create_date")
private Timestamp createDate; private javatype createDate;
/** /**
* 显示名称 * 显示名称
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "display_name") @JSONField(name = "display_name")
@JsonProperty("display_name") @JsonProperty("display_name")
private String displayName; private javatype displayName;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -92,14 +92,14 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -92,14 +92,14 @@ public class Account_account_template extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("__last_update") @JsonProperty("__last_update")
private Timestamp LastUpdate; private javatype LastUpdate;
/** /**
* 名称 * 名称
*/ */
@TableField(value = "name") @TableField(value = "name")
@JSONField(name = "name") @JSONField(name = "name")
@JsonProperty("name") @JsonProperty("name")
private String name; private javatype name;
/** /**
* ID * ID
*/ */
...@@ -107,14 +107,14 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -107,14 +107,14 @@ public class Account_account_template extends EntityMP implements Serializable {
@TableId(value= "id",type=IdType.AUTO) @TableId(value= "id",type=IdType.AUTO)
@JSONField(name = "id") @JSONField(name = "id")
@JsonProperty("id") @JsonProperty("id")
private Long id; private javatype id;
/** /**
* 备注 * 备注
*/ */
@TableField(value = "note") @TableField(value = "note")
@JSONField(name = "note") @JSONField(name = "note")
@JsonProperty("note") @JsonProperty("note")
private String note; private javatype note;
/** /**
* 最后更新时间 * 最后更新时间
*/ */
...@@ -123,56 +123,56 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -123,56 +123,56 @@ public class Account_account_template extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("write_date") @JsonProperty("write_date")
private Timestamp writeDate; private javatype writeDate;
/** /**
* 允许发票和付款匹配 * 允许发票和付款匹配
*/ */
@TableField(value = "reconcile") @TableField(value = "reconcile")
@JSONField(name = "reconcile") @JSONField(name = "reconcile")
@JsonProperty("reconcile") @JsonProperty("reconcile")
private Integer reconcile; private javatype reconcile;
/** /**
* 表模板 * 表模板
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "chart_template_id_text") @JSONField(name = "chart_template_id_text")
@JsonProperty("chart_template_id_text") @JsonProperty("chart_template_id_text")
private String chartTemplateIdText; private javatype chartTemplateIdText;
/** /**
* 科目币种 * 科目币种
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "currency_id_text") @JSONField(name = "currency_id_text")
@JsonProperty("currency_id_text") @JsonProperty("currency_id_text")
private String currencyIdText; private javatype currencyIdText;
/** /**
* 类型 * 类型
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "user_type_id_text") @JSONField(name = "user_type_id_text")
@JsonProperty("user_type_id_text") @JsonProperty("user_type_id_text")
private String userTypeIdText; private javatype userTypeIdText;
/** /**
* 创建人 * 创建人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "create_uid_text") @JSONField(name = "create_uid_text")
@JsonProperty("create_uid_text") @JsonProperty("create_uid_text")
private String createUidText; private javatype createUidText;
/** /**
* 最后更新人 * 最后更新人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "write_uid_text") @JSONField(name = "write_uid_text")
@JsonProperty("write_uid_text") @JsonProperty("write_uid_text")
private String writeUidText; private javatype writeUidText;
/** /**
* 组 * 组
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "group_id_text") @JSONField(name = "group_id_text")
@JsonProperty("group_id_text") @JsonProperty("group_id_text")
private String groupIdText; private javatype groupIdText;
/** /**
* 最后更新人 * 最后更新人
*/ */
...@@ -180,7 +180,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -180,7 +180,7 @@ public class Account_account_template extends EntityMP implements Serializable {
@TableField(value = "write_uid") @TableField(value = "write_uid")
@JSONField(name = "write_uid") @JSONField(name = "write_uid")
@JsonProperty("write_uid") @JsonProperty("write_uid")
private Long writeUid; private javatype writeUid;
/** /**
* 创建人 * 创建人
*/ */
...@@ -188,7 +188,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -188,7 +188,7 @@ public class Account_account_template extends EntityMP implements Serializable {
@TableField(value = "create_uid" , fill = FieldFill.INSERT) @TableField(value = "create_uid" , fill = FieldFill.INSERT)
@JSONField(name = "create_uid") @JSONField(name = "create_uid")
@JsonProperty("create_uid") @JsonProperty("create_uid")
private Long createUid; private javatype createUid;
/** /**
* 表模板 * 表模板
*/ */
...@@ -196,7 +196,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -196,7 +196,7 @@ public class Account_account_template extends EntityMP implements Serializable {
@TableField(value = "chart_template_id") @TableField(value = "chart_template_id")
@JSONField(name = "chart_template_id") @JSONField(name = "chart_template_id")
@JsonProperty("chart_template_id") @JsonProperty("chart_template_id")
private Long chartTemplateId; private javatype chartTemplateId;
/** /**
* 科目币种 * 科目币种
*/ */
...@@ -204,7 +204,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -204,7 +204,7 @@ public class Account_account_template extends EntityMP implements Serializable {
@TableField(value = "currency_id") @TableField(value = "currency_id")
@JSONField(name = "currency_id") @JSONField(name = "currency_id")
@JsonProperty("currency_id") @JsonProperty("currency_id")
private Long currencyId; private javatype currencyId;
/** /**
* 类型 * 类型
*/ */
...@@ -212,7 +212,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -212,7 +212,7 @@ public class Account_account_template extends EntityMP implements Serializable {
@TableField(value = "user_type_id") @TableField(value = "user_type_id")
@JSONField(name = "user_type_id") @JSONField(name = "user_type_id")
@JsonProperty("user_type_id") @JsonProperty("user_type_id")
private Long userTypeId; private javatype userTypeId;
/** /**
* 组 * 组
*/ */
...@@ -220,7 +220,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -220,7 +220,7 @@ public class Account_account_template extends EntityMP implements Serializable {
@TableField(value = "group_id") @TableField(value = "group_id")
@JSONField(name = "group_id") @JSONField(name = "group_id")
@JsonProperty("group_id") @JsonProperty("group_id")
private Long groupId; private javatype groupId;
/** /**
* *
...@@ -275,7 +275,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -275,7 +275,7 @@ public class Account_account_template extends EntityMP implements Serializable {
/** /**
* 设置 [代码] * 设置 [代码]
*/ */
public void setCode(String code){ public void setCode(javatype code){
this.code = code ; this.code = code ;
this.modify("code",code); this.modify("code",code);
} }
...@@ -283,7 +283,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -283,7 +283,7 @@ public class Account_account_template extends EntityMP implements Serializable {
/** /**
* 设置 [选项创建] * 设置 [选项创建]
*/ */
public void setNocreate(Integer nocreate){ public void setNocreate(javatype nocreate){
this.nocreate = nocreate ; this.nocreate = nocreate ;
this.modify("nocreate",nocreate); this.modify("nocreate",nocreate);
} }
...@@ -291,7 +291,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -291,7 +291,7 @@ public class Account_account_template extends EntityMP implements Serializable {
/** /**
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(javatype name){
this.name = name ; this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -299,7 +299,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -299,7 +299,7 @@ public class Account_account_template extends EntityMP implements Serializable {
/** /**
* 设置 [备注] * 设置 [备注]
*/ */
public void setNote(String note){ public void setNote(javatype note){
this.note = note ; this.note = note ;
this.modify("note",note); this.modify("note",note);
} }
...@@ -307,7 +307,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -307,7 +307,7 @@ public class Account_account_template extends EntityMP implements Serializable {
/** /**
* 设置 [允许发票和付款匹配] * 设置 [允许发票和付款匹配]
*/ */
public void setReconcile(Integer reconcile){ public void setReconcile(javatype reconcile){
this.reconcile = reconcile ; this.reconcile = reconcile ;
this.modify("reconcile",reconcile); this.modify("reconcile",reconcile);
} }
...@@ -315,7 +315,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -315,7 +315,7 @@ public class Account_account_template extends EntityMP implements Serializable {
/** /**
* 设置 [表模板] * 设置 [表模板]
*/ */
public void setChartTemplateId(Long chartTemplateId){ public void setChartTemplateId(javatype chartTemplateId){
this.chartTemplateId = chartTemplateId ; this.chartTemplateId = chartTemplateId ;
this.modify("chart_template_id",chartTemplateId); this.modify("chart_template_id",chartTemplateId);
} }
...@@ -323,7 +323,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -323,7 +323,7 @@ public class Account_account_template extends EntityMP implements Serializable {
/** /**
* 设置 [科目币种] * 设置 [科目币种]
*/ */
public void setCurrencyId(Long currencyId){ public void setCurrencyId(javatype currencyId){
this.currencyId = currencyId ; this.currencyId = currencyId ;
this.modify("currency_id",currencyId); this.modify("currency_id",currencyId);
} }
...@@ -331,7 +331,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -331,7 +331,7 @@ public class Account_account_template extends EntityMP implements Serializable {
/** /**
* 设置 [类型] * 设置 [类型]
*/ */
public void setUserTypeId(Long userTypeId){ public void setUserTypeId(javatype userTypeId){
this.userTypeId = userTypeId ; this.userTypeId = userTypeId ;
this.modify("user_type_id",userTypeId); this.modify("user_type_id",userTypeId);
} }
...@@ -339,7 +339,7 @@ public class Account_account_template extends EntityMP implements Serializable { ...@@ -339,7 +339,7 @@ public class Account_account_template extends EntityMP implements Serializable {
/** /**
* 设置 [组] * 设置 [组]
*/ */
public void setGroupId(Long groupId){ public void setGroupId(javatype groupId){
this.groupId = groupId ; this.groupId = groupId ;
this.modify("group_id",groupId); this.modify("group_id",groupId);
} }
......
...@@ -47,14 +47,14 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -47,14 +47,14 @@ public class Account_account_type extends EntityMP implements Serializable {
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "display_name") @JSONField(name = "display_name")
@JsonProperty("display_name") @JsonProperty("display_name")
private String displayName; private javatype displayName;
/** /**
* 类型 * 类型
*/ */
@TableField(value = "type") @TableField(value = "type")
@JSONField(name = "type") @JSONField(name = "type")
@JsonProperty("type") @JsonProperty("type")
private String type; private javatype type;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -62,7 +62,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -62,7 +62,7 @@ public class Account_account_type extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("__last_update") @JsonProperty("__last_update")
private Timestamp LastUpdate; private javatype LastUpdate;
/** /**
* ID * ID
*/ */
...@@ -70,7 +70,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -70,7 +70,7 @@ public class Account_account_type extends EntityMP implements Serializable {
@TableId(value= "id",type=IdType.AUTO) @TableId(value= "id",type=IdType.AUTO)
@JSONField(name = "id") @JSONField(name = "id")
@JsonProperty("id") @JsonProperty("id")
private Long id; private javatype id;
/** /**
* 最后更新时间 * 最后更新时间
*/ */
...@@ -79,7 +79,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -79,7 +79,7 @@ public class Account_account_type extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("write_date") @JsonProperty("write_date")
private Timestamp writeDate; private javatype writeDate;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -88,14 +88,14 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -88,14 +88,14 @@ public class Account_account_type extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("create_date") @JsonProperty("create_date")
private Timestamp createDate; private javatype createDate;
/** /**
* 说明 * 说明
*/ */
@TableField(value = "note") @TableField(value = "note")
@JSONField(name = "note") @JSONField(name = "note")
@JsonProperty("note") @JsonProperty("note")
private String note; private javatype note;
/** /**
* 将科目余额转移 * 将科目余额转移
*/ */
...@@ -103,14 +103,14 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -103,14 +103,14 @@ 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 Integer includeInitialBalance; private javatype includeInitialBalance;
/** /**
* 科目类型 * 科目类型
*/ */
@TableField(value = "name") @TableField(value = "name")
@JSONField(name = "name") @JSONField(name = "name")
@JsonProperty("name") @JsonProperty("name")
private String name; private javatype name;
/** /**
* 内部群组 * 内部群组
*/ */
...@@ -118,21 +118,21 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -118,21 +118,21 @@ public class Account_account_type extends EntityMP implements Serializable {
@TableField(value = "internal_group") @TableField(value = "internal_group")
@JSONField(name = "internal_group") @JSONField(name = "internal_group")
@JsonProperty("internal_group") @JsonProperty("internal_group")
private String internalGroup; private javatype internalGroup;
/** /**
* 最后更新人 * 最后更新人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "write_uid_text") @JSONField(name = "write_uid_text")
@JsonProperty("write_uid_text") @JsonProperty("write_uid_text")
private String writeUidText; private javatype writeUidText;
/** /**
* 创建人 * 创建人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "create_uid_text") @JSONField(name = "create_uid_text")
@JsonProperty("create_uid_text") @JsonProperty("create_uid_text")
private String createUidText; private javatype createUidText;
/** /**
* 创建人 * 创建人
*/ */
...@@ -140,7 +140,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -140,7 +140,7 @@ public class Account_account_type extends EntityMP implements Serializable {
@TableField(value = "create_uid" , fill = FieldFill.INSERT) @TableField(value = "create_uid" , fill = FieldFill.INSERT)
@JSONField(name = "create_uid") @JSONField(name = "create_uid")
@JsonProperty("create_uid") @JsonProperty("create_uid")
private Long createUid; private javatype createUid;
/** /**
* 最后更新人 * 最后更新人
*/ */
...@@ -148,7 +148,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -148,7 +148,7 @@ public class Account_account_type extends EntityMP implements Serializable {
@TableField(value = "write_uid") @TableField(value = "write_uid")
@JSONField(name = "write_uid") @JSONField(name = "write_uid")
@JsonProperty("write_uid") @JsonProperty("write_uid")
private Long writeUid; private javatype writeUid;
/** /**
* *
...@@ -171,7 +171,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -171,7 +171,7 @@ public class Account_account_type extends EntityMP implements Serializable {
/** /**
* 设置 [类型] * 设置 [类型]
*/ */
public void setType(String type){ public void setType(javatype type){
this.type = type ; this.type = type ;
this.modify("type",type); this.modify("type",type);
} }
...@@ -179,7 +179,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -179,7 +179,7 @@ public class Account_account_type extends EntityMP implements Serializable {
/** /**
* 设置 [说明] * 设置 [说明]
*/ */
public void setNote(String note){ public void setNote(javatype note){
this.note = note ; this.note = note ;
this.modify("note",note); this.modify("note",note);
} }
...@@ -187,7 +187,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -187,7 +187,7 @@ public class Account_account_type extends EntityMP implements Serializable {
/** /**
* 设置 [将科目余额转移] * 设置 [将科目余额转移]
*/ */
public void setIncludeInitialBalance(Integer includeInitialBalance){ public void setIncludeInitialBalance(javatype includeInitialBalance){
this.includeInitialBalance = includeInitialBalance ; this.includeInitialBalance = includeInitialBalance ;
this.modify("include_initial_balance",includeInitialBalance); this.modify("include_initial_balance",includeInitialBalance);
} }
...@@ -195,7 +195,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -195,7 +195,7 @@ public class Account_account_type extends EntityMP implements Serializable {
/** /**
* 设置 [科目类型] * 设置 [科目类型]
*/ */
public void setName(String name){ public void setName(javatype name){
this.name = name ; this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -203,7 +203,7 @@ public class Account_account_type extends EntityMP implements Serializable { ...@@ -203,7 +203,7 @@ public class Account_account_type extends EntityMP implements Serializable {
/** /**
* 设置 [内部群组] * 设置 [内部群组]
*/ */
public void setInternalGroup(String internalGroup){ public void setInternalGroup(javatype internalGroup){
this.internalGroup = internalGroup ; this.internalGroup = internalGroup ;
this.modify("internal_group",internalGroup); this.modify("internal_group",internalGroup);
} }
......
...@@ -47,14 +47,14 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -47,14 +47,14 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
@TableField(value = "percentage") @TableField(value = "percentage")
@JSONField(name = "percentage") @JSONField(name = "percentage")
@JsonProperty("percentage") @JsonProperty("percentage")
private Double percentage; private javatype percentage;
/** /**
* 显示名称 * 显示名称
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "display_name") @JSONField(name = "display_name")
@JsonProperty("display_name") @JsonProperty("display_name")
private String displayName; private javatype displayName;
/** /**
* 最后更新时间 * 最后更新时间
*/ */
...@@ -63,7 +63,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -63,7 +63,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("write_date") @JsonProperty("write_date")
private Timestamp writeDate; private javatype writeDate;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -71,7 +71,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -71,7 +71,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("__last_update") @JsonProperty("__last_update")
private Timestamp LastUpdate; private javatype LastUpdate;
/** /**
* ID * ID
*/ */
...@@ -79,7 +79,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -79,7 +79,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
@TableId(value= "id",type=IdType.AUTO) @TableId(value= "id",type=IdType.AUTO)
@JSONField(name = "id") @JSONField(name = "id")
@JsonProperty("id") @JsonProperty("id")
private Long id; private javatype id;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -88,35 +88,35 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -88,35 +88,35 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("create_date") @JsonProperty("create_date")
private Timestamp createDate; private javatype createDate;
/** /**
* 创建人 * 创建人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "create_uid_text") @JSONField(name = "create_uid_text")
@JsonProperty("create_uid_text") @JsonProperty("create_uid_text")
private String createUidText; private javatype createUidText;
/** /**
* 名称 * 名称
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "name") @JSONField(name = "name")
@JsonProperty("name") @JsonProperty("name")
private String name; private javatype name;
/** /**
* 上级标签 * 上级标签
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "tag_id_text") @JSONField(name = "tag_id_text")
@JsonProperty("tag_id_text") @JsonProperty("tag_id_text")
private String tagIdText; private javatype tagIdText;
/** /**
* 最后更新人 * 最后更新人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "write_uid_text") @JSONField(name = "write_uid_text")
@JsonProperty("write_uid_text") @JsonProperty("write_uid_text")
private String writeUidText; private javatype writeUidText;
/** /**
* 创建人 * 创建人
*/ */
...@@ -124,7 +124,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -124,7 +124,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
@TableField(value = "create_uid" , fill = FieldFill.INSERT) @TableField(value = "create_uid" , fill = FieldFill.INSERT)
@JSONField(name = "create_uid") @JSONField(name = "create_uid")
@JsonProperty("create_uid") @JsonProperty("create_uid")
private Long createUid; private javatype createUid;
/** /**
* 最后更新人 * 最后更新人
*/ */
...@@ -132,7 +132,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -132,7 +132,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
@TableField(value = "write_uid") @TableField(value = "write_uid")
@JSONField(name = "write_uid") @JSONField(name = "write_uid")
@JsonProperty("write_uid") @JsonProperty("write_uid")
private Long writeUid; private javatype writeUid;
/** /**
* 上级标签 * 上级标签
*/ */
...@@ -140,7 +140,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -140,7 +140,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
@TableField(value = "tag_id") @TableField(value = "tag_id")
@JSONField(name = "tag_id") @JSONField(name = "tag_id")
@JsonProperty("tag_id") @JsonProperty("tag_id")
private Long tagId; private javatype tagId;
/** /**
* 分析账户 * 分析账户
*/ */
...@@ -148,7 +148,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -148,7 +148,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
@TableField(value = "account_id") @TableField(value = "account_id")
@JSONField(name = "account_id") @JSONField(name = "account_id")
@JsonProperty("account_id") @JsonProperty("account_id")
private Long accountId; private javatype accountId;
/** /**
* *
...@@ -187,7 +187,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -187,7 +187,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
/** /**
* 设置 [百分比] * 设置 [百分比]
*/ */
public void setPercentage(Double percentage){ public void setPercentage(javatype percentage){
this.percentage = percentage ; this.percentage = percentage ;
this.modify("percentage",percentage); this.modify("percentage",percentage);
} }
...@@ -195,7 +195,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -195,7 +195,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
/** /**
* 设置 [上级标签] * 设置 [上级标签]
*/ */
public void setTagId(Long tagId){ public void setTagId(javatype tagId){
this.tagId = tagId ; this.tagId = tagId ;
this.modify("tag_id",tagId); this.modify("tag_id",tagId);
} }
...@@ -203,7 +203,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa ...@@ -203,7 +203,7 @@ public class Account_analytic_distribution extends EntityMP implements Serializa
/** /**
* 设置 [分析账户] * 设置 [分析账户]
*/ */
public void setAccountId(Long accountId){ public void setAccountId(javatype accountId){
this.accountId = accountId ; this.accountId = accountId ;
this.modify("account_id",accountId); this.modify("account_id",accountId);
} }
......
...@@ -48,14 +48,14 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -48,14 +48,14 @@ public class Account_analytic_group extends EntityMP implements Serializable {
@TableId(value= "id",type=IdType.AUTO) @TableId(value= "id",type=IdType.AUTO)
@JSONField(name = "id") @JSONField(name = "id")
@JsonProperty("id") @JsonProperty("id")
private Long id; private javatype id;
/** /**
* 名称 * 名称
*/ */
@TableField(value = "name") @TableField(value = "name")
@JSONField(name = "name") @JSONField(name = "name")
@JsonProperty("name") @JsonProperty("name")
private String name; private javatype name;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -63,7 +63,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -63,7 +63,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("__last_update") @JsonProperty("__last_update")
private Timestamp LastUpdate; private javatype LastUpdate;
/** /**
* 父级路径 * 父级路径
*/ */
...@@ -71,7 +71,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -71,7 +71,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
@TableField(value = "parent_path") @TableField(value = "parent_path")
@JSONField(name = "parent_path") @JSONField(name = "parent_path")
@JsonProperty("parent_path") @JsonProperty("parent_path")
private String parentPath; private javatype parentPath;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -80,14 +80,14 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -80,14 +80,14 @@ public class Account_analytic_group extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("create_date") @JsonProperty("create_date")
private Timestamp createDate; private javatype createDate;
/** /**
* 显示名称 * 显示名称
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "display_name") @JSONField(name = "display_name")
@JsonProperty("display_name") @JsonProperty("display_name")
private String displayName; private javatype displayName;
/** /**
* 完整名称 * 完整名称
*/ */
...@@ -95,21 +95,21 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -95,21 +95,21 @@ public class Account_analytic_group extends EntityMP implements Serializable {
@TableField(value = "complete_name") @TableField(value = "complete_name")
@JSONField(name = "complete_name") @JSONField(name = "complete_name")
@JsonProperty("complete_name") @JsonProperty("complete_name")
private String completeName; private javatype completeName;
/** /**
* 说明 * 说明
*/ */
@TableField(value = "description") @TableField(value = "description")
@JSONField(name = "description") @JSONField(name = "description")
@JsonProperty("description") @JsonProperty("description")
private String description; private javatype description;
/** /**
* 下级 * 下级
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "children_ids") @JSONField(name = "children_ids")
@JsonProperty("children_ids") @JsonProperty("children_ids")
private String childrenIds; private javatype childrenIds;
/** /**
* 最后更新时间 * 最后更新时间
*/ */
...@@ -118,35 +118,35 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -118,35 +118,35 @@ public class Account_analytic_group extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("write_date") @JsonProperty("write_date")
private Timestamp writeDate; private javatype writeDate;
/** /**
* 上级 * 上级
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "parent_id_text") @JSONField(name = "parent_id_text")
@JsonProperty("parent_id_text") @JsonProperty("parent_id_text")
private String parentIdText; private javatype parentIdText;
/** /**
* 最后更新人 * 最后更新人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "write_uid_text") @JSONField(name = "write_uid_text")
@JsonProperty("write_uid_text") @JsonProperty("write_uid_text")
private String writeUidText; private javatype writeUidText;
/** /**
* 创建人 * 创建人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "create_uid_text") @JSONField(name = "create_uid_text")
@JsonProperty("create_uid_text") @JsonProperty("create_uid_text")
private String createUidText; private javatype createUidText;
/** /**
* 公司 * 公司
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "company_id_text") @JSONField(name = "company_id_text")
@JsonProperty("company_id_text") @JsonProperty("company_id_text")
private String companyIdText; private javatype companyIdText;
/** /**
* 最后更新人 * 最后更新人
*/ */
...@@ -154,7 +154,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -154,7 +154,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
@TableField(value = "write_uid") @TableField(value = "write_uid")
@JSONField(name = "write_uid") @JSONField(name = "write_uid")
@JsonProperty("write_uid") @JsonProperty("write_uid")
private Long writeUid; private javatype writeUid;
/** /**
* 创建人 * 创建人
*/ */
...@@ -162,7 +162,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -162,7 +162,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
@TableField(value = "create_uid" , fill = FieldFill.INSERT) @TableField(value = "create_uid" , fill = FieldFill.INSERT)
@JSONField(name = "create_uid") @JSONField(name = "create_uid")
@JsonProperty("create_uid") @JsonProperty("create_uid")
private Long createUid; private javatype createUid;
/** /**
* 公司 * 公司
*/ */
...@@ -170,7 +170,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -170,7 +170,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
@TableField(value = "company_id") @TableField(value = "company_id")
@JSONField(name = "company_id") @JSONField(name = "company_id")
@JsonProperty("company_id") @JsonProperty("company_id")
private Long companyId; private javatype companyId;
/** /**
* 上级 * 上级
*/ */
...@@ -178,7 +178,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -178,7 +178,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
@TableField(value = "parent_id") @TableField(value = "parent_id")
@JSONField(name = "parent_id") @JSONField(name = "parent_id")
@JsonProperty("parent_id") @JsonProperty("parent_id")
private Long parentId; private javatype parentId;
/** /**
* *
...@@ -217,7 +217,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -217,7 +217,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
/** /**
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(javatype name){
this.name = name ; this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -225,7 +225,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -225,7 +225,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
/** /**
* 设置 [父级路径] * 设置 [父级路径]
*/ */
public void setParentPath(String parentPath){ public void setParentPath(javatype parentPath){
this.parentPath = parentPath ; this.parentPath = parentPath ;
this.modify("parent_path",parentPath); this.modify("parent_path",parentPath);
} }
...@@ -233,7 +233,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -233,7 +233,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
/** /**
* 设置 [完整名称] * 设置 [完整名称]
*/ */
public void setCompleteName(String completeName){ public void setCompleteName(javatype completeName){
this.completeName = completeName ; this.completeName = completeName ;
this.modify("complete_name",completeName); this.modify("complete_name",completeName);
} }
...@@ -241,7 +241,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -241,7 +241,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
/** /**
* 设置 [说明] * 设置 [说明]
*/ */
public void setDescription(String description){ public void setDescription(javatype description){
this.description = description ; this.description = description ;
this.modify("description",description); this.modify("description",description);
} }
...@@ -249,7 +249,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -249,7 +249,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
/** /**
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(javatype companyId){
this.companyId = companyId ; this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
...@@ -257,7 +257,7 @@ public class Account_analytic_group extends EntityMP implements Serializable { ...@@ -257,7 +257,7 @@ public class Account_analytic_group extends EntityMP implements Serializable {
/** /**
* 设置 [上级] * 设置 [上级]
*/ */
public void setParentId(Long parentId){ public void setParentId(javatype parentId){
this.parentId = parentId ; this.parentId = parentId ;
this.modify("parent_id",parentId); this.modify("parent_id",parentId);
} }
......
...@@ -47,7 +47,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -47,7 +47,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "analytic_distribution_ids") @JSONField(name = "analytic_distribution_ids")
@JsonProperty("analytic_distribution_ids") @JsonProperty("analytic_distribution_ids")
private String analyticDistributionIds; private javatype analyticDistributionIds;
/** /**
* ID * ID
*/ */
...@@ -55,7 +55,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -55,7 +55,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
@TableId(value= "id",type=IdType.AUTO) @TableId(value= "id",type=IdType.AUTO)
@JSONField(name = "id") @JSONField(name = "id")
@JsonProperty("id") @JsonProperty("id")
private Long id; private javatype id;
/** /**
* 分析分配 * 分析分配
*/ */
...@@ -63,21 +63,21 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -63,21 +63,21 @@ 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 Integer activeAnalyticDistribution; private javatype activeAnalyticDistribution;
/** /**
* 分析标签 * 分析标签
*/ */
@TableField(value = "name") @TableField(value = "name")
@JSONField(name = "name") @JSONField(name = "name")
@JsonProperty("name") @JsonProperty("name")
private String name; private javatype name;
/** /**
* 有效 * 有效
*/ */
@TableField(value = "active") @TableField(value = "active")
@JSONField(name = "active") @JSONField(name = "active")
@JsonProperty("active") @JsonProperty("active")
private Integer active; private javatype active;
/** /**
* 最后更新时间 * 最后更新时间
*/ */
...@@ -86,7 +86,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -86,7 +86,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("write_date") @JsonProperty("write_date")
private Timestamp writeDate; private javatype writeDate;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -95,7 +95,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -95,7 +95,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("create_date") @JsonProperty("create_date")
private Timestamp createDate; private javatype createDate;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -103,42 +103,42 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -103,42 +103,42 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("__last_update") @JsonProperty("__last_update")
private Timestamp LastUpdate; private javatype LastUpdate;
/** /**
* 颜色索引 * 颜色索引
*/ */
@TableField(value = "color") @TableField(value = "color")
@JSONField(name = "color") @JSONField(name = "color")
@JsonProperty("color") @JsonProperty("color")
private Integer color; private javatype color;
/** /**
* 显示名称 * 显示名称
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "display_name") @JSONField(name = "display_name")
@JsonProperty("display_name") @JsonProperty("display_name")
private String displayName; private javatype displayName;
/** /**
* 创建人 * 创建人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "create_uid_text") @JSONField(name = "create_uid_text")
@JsonProperty("create_uid_text") @JsonProperty("create_uid_text")
private String createUidText; private javatype createUidText;
/** /**
* 公司 * 公司
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "company_id_text") @JSONField(name = "company_id_text")
@JsonProperty("company_id_text") @JsonProperty("company_id_text")
private String companyIdText; private javatype companyIdText;
/** /**
* 最后更新人 * 最后更新人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "write_uid_text") @JSONField(name = "write_uid_text")
@JsonProperty("write_uid_text") @JsonProperty("write_uid_text")
private String writeUidText; private javatype writeUidText;
/** /**
* 最后更新人 * 最后更新人
*/ */
...@@ -146,7 +146,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -146,7 +146,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
@TableField(value = "write_uid") @TableField(value = "write_uid")
@JSONField(name = "write_uid") @JSONField(name = "write_uid")
@JsonProperty("write_uid") @JsonProperty("write_uid")
private Long writeUid; private javatype writeUid;
/** /**
* 创建人 * 创建人
*/ */
...@@ -154,7 +154,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -154,7 +154,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
@TableField(value = "create_uid" , fill = FieldFill.INSERT) @TableField(value = "create_uid" , fill = FieldFill.INSERT)
@JSONField(name = "create_uid") @JSONField(name = "create_uid")
@JsonProperty("create_uid") @JsonProperty("create_uid")
private Long createUid; private javatype createUid;
/** /**
* 公司 * 公司
*/ */
...@@ -162,7 +162,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -162,7 +162,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
@TableField(value = "company_id") @TableField(value = "company_id")
@JSONField(name = "company_id") @JSONField(name = "company_id")
@JsonProperty("company_id") @JsonProperty("company_id")
private Long companyId; private javatype companyId;
/** /**
* *
...@@ -193,7 +193,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -193,7 +193,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
/** /**
* 设置 [分析分配] * 设置 [分析分配]
*/ */
public void setActiveAnalyticDistribution(Integer activeAnalyticDistribution){ public void setActiveAnalyticDistribution(javatype activeAnalyticDistribution){
this.activeAnalyticDistribution = activeAnalyticDistribution ; this.activeAnalyticDistribution = activeAnalyticDistribution ;
this.modify("active_analytic_distribution",activeAnalyticDistribution); this.modify("active_analytic_distribution",activeAnalyticDistribution);
} }
...@@ -201,7 +201,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -201,7 +201,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
/** /**
* 设置 [分析标签] * 设置 [分析标签]
*/ */
public void setName(String name){ public void setName(javatype name){
this.name = name ; this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -209,7 +209,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -209,7 +209,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
/** /**
* 设置 [有效] * 设置 [有效]
*/ */
public void setActive(Integer active){ public void setActive(javatype active){
this.active = active ; this.active = active ;
this.modify("active",active); this.modify("active",active);
} }
...@@ -217,7 +217,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -217,7 +217,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
/** /**
* 设置 [颜色索引] * 设置 [颜色索引]
*/ */
public void setColor(Integer color){ public void setColor(javatype color){
this.color = color ; this.color = color ;
this.modify("color",color); this.modify("color",color);
} }
...@@ -225,7 +225,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable { ...@@ -225,7 +225,7 @@ public class Account_analytic_tag extends EntityMP implements Serializable {
/** /**
* 设置 [公司] * 设置 [公司]
*/ */
public void setCompanyId(Long companyId){ public void setCompanyId(javatype companyId){
this.companyId = companyId ; this.companyId = companyId ;
this.modify("company_id",companyId); this.modify("company_id",companyId);
} }
......
...@@ -49,7 +49,7 @@ public class Account_bank_statement_cashbox extends EntityMP implements Serializ ...@@ -49,7 +49,7 @@ public class Account_bank_statement_cashbox extends EntityMP implements Serializ
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("create_date") @JsonProperty("create_date")
private Timestamp createDate; private javatype createDate;
/** /**
* 最后更新时间 * 最后更新时间
*/ */
...@@ -58,21 +58,21 @@ public class Account_bank_statement_cashbox extends EntityMP implements Serializ ...@@ -58,21 +58,21 @@ public class Account_bank_statement_cashbox extends EntityMP implements Serializ
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("write_date") @JsonProperty("write_date")
private Timestamp writeDate; private javatype writeDate;
/** /**
* 钱箱明细 * 钱箱明细
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "cashbox_lines_ids") @JSONField(name = "cashbox_lines_ids")
@JsonProperty("cashbox_lines_ids") @JsonProperty("cashbox_lines_ids")
private String cashboxLinesIds; private javatype cashboxLinesIds;
/** /**
* 显示名称 * 显示名称
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "display_name") @JSONField(name = "display_name")
@JsonProperty("display_name") @JsonProperty("display_name")
private String displayName; private javatype displayName;
/** /**
* ID * ID
*/ */
...@@ -80,7 +80,7 @@ public class Account_bank_statement_cashbox extends EntityMP implements Serializ ...@@ -80,7 +80,7 @@ public class Account_bank_statement_cashbox extends EntityMP implements Serializ
@TableId(value= "id",type=IdType.AUTO) @TableId(value= "id",type=IdType.AUTO)
@JSONField(name = "id") @JSONField(name = "id")
@JsonProperty("id") @JsonProperty("id")
private Long id; private javatype id;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -88,21 +88,21 @@ public class Account_bank_statement_cashbox extends EntityMP implements Serializ ...@@ -88,21 +88,21 @@ public class Account_bank_statement_cashbox extends EntityMP implements Serializ
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("__last_update") @JsonProperty("__last_update")
private Timestamp LastUpdate; private javatype LastUpdate;
/** /**
* 创建人 * 创建人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "create_uid_text") @JSONField(name = "create_uid_text")
@JsonProperty("create_uid_text") @JsonProperty("create_uid_text")
private String createUidText; private javatype createUidText;
/** /**
* 最后更新人 * 最后更新人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "write_uid_text") @JSONField(name = "write_uid_text")
@JsonProperty("write_uid_text") @JsonProperty("write_uid_text")
private String writeUidText; private javatype writeUidText;
/** /**
* 创建人 * 创建人
*/ */
...@@ -110,7 +110,7 @@ public class Account_bank_statement_cashbox extends EntityMP implements Serializ ...@@ -110,7 +110,7 @@ public class Account_bank_statement_cashbox extends EntityMP implements Serializ
@TableField(value = "create_uid" , fill = FieldFill.INSERT) @TableField(value = "create_uid" , fill = FieldFill.INSERT)
@JSONField(name = "create_uid") @JSONField(name = "create_uid")
@JsonProperty("create_uid") @JsonProperty("create_uid")
private Long createUid; private javatype createUid;
/** /**
* 最后更新人 * 最后更新人
*/ */
...@@ -118,7 +118,7 @@ public class Account_bank_statement_cashbox extends EntityMP implements Serializ ...@@ -118,7 +118,7 @@ public class Account_bank_statement_cashbox extends EntityMP implements Serializ
@TableField(value = "write_uid") @TableField(value = "write_uid")
@JSONField(name = "write_uid") @JSONField(name = "write_uid")
@JsonProperty("write_uid") @JsonProperty("write_uid")
private Long writeUid; private javatype writeUid;
/** /**
* *
......
...@@ -49,7 +49,7 @@ public class Account_bank_statement_closebalance extends EntityMP implements Ser ...@@ -49,7 +49,7 @@ public class Account_bank_statement_closebalance extends EntityMP implements Ser
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("write_date") @JsonProperty("write_date")
private Timestamp writeDate; private javatype writeDate;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -57,7 +57,7 @@ public class Account_bank_statement_closebalance extends EntityMP implements Ser ...@@ -57,7 +57,7 @@ public class Account_bank_statement_closebalance extends EntityMP implements Ser
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("__last_update") @JsonProperty("__last_update")
private Timestamp LastUpdate; private javatype LastUpdate;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -66,7 +66,7 @@ public class Account_bank_statement_closebalance extends EntityMP implements Ser ...@@ -66,7 +66,7 @@ public class Account_bank_statement_closebalance extends EntityMP implements Ser
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("create_date") @JsonProperty("create_date")
private Timestamp createDate; private javatype createDate;
/** /**
* ID * ID
*/ */
...@@ -74,28 +74,28 @@ public class Account_bank_statement_closebalance extends EntityMP implements Ser ...@@ -74,28 +74,28 @@ public class Account_bank_statement_closebalance extends EntityMP implements Ser
@TableId(value= "id",type=IdType.AUTO) @TableId(value= "id",type=IdType.AUTO)
@JSONField(name = "id") @JSONField(name = "id")
@JsonProperty("id") @JsonProperty("id")
private Long id; private javatype id;
/** /**
* 显示名称 * 显示名称
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "display_name") @JSONField(name = "display_name")
@JsonProperty("display_name") @JsonProperty("display_name")
private String displayName; private javatype displayName;
/** /**
* 创建人 * 创建人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "create_uid_text") @JSONField(name = "create_uid_text")
@JsonProperty("create_uid_text") @JsonProperty("create_uid_text")
private String createUidText; private javatype createUidText;
/** /**
* 最后更新人 * 最后更新人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "write_uid_text") @JSONField(name = "write_uid_text")
@JsonProperty("write_uid_text") @JsonProperty("write_uid_text")
private String writeUidText; private javatype writeUidText;
/** /**
* 最后更新人 * 最后更新人
*/ */
...@@ -103,7 +103,7 @@ public class Account_bank_statement_closebalance extends EntityMP implements Ser ...@@ -103,7 +103,7 @@ public class Account_bank_statement_closebalance extends EntityMP implements Ser
@TableField(value = "write_uid") @TableField(value = "write_uid")
@JSONField(name = "write_uid") @JSONField(name = "write_uid")
@JsonProperty("write_uid") @JsonProperty("write_uid")
private Long writeUid; private javatype writeUid;
/** /**
* 创建人 * 创建人
*/ */
...@@ -111,7 +111,7 @@ public class Account_bank_statement_closebalance extends EntityMP implements Ser ...@@ -111,7 +111,7 @@ public class Account_bank_statement_closebalance extends EntityMP implements Ser
@TableField(value = "create_uid" , fill = FieldFill.INSERT) @TableField(value = "create_uid" , fill = FieldFill.INSERT)
@JSONField(name = "create_uid") @JSONField(name = "create_uid")
@JsonProperty("create_uid") @JsonProperty("create_uid")
private Long createUid; private javatype createUid;
/** /**
* *
......
...@@ -49,7 +49,7 @@ public class Account_bank_statement_import extends EntityMP implements Serializa ...@@ -49,7 +49,7 @@ public class Account_bank_statement_import extends EntityMP implements Serializa
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("create_date") @JsonProperty("create_date")
private Timestamp createDate; private javatype createDate;
/** /**
* 最后更新时间 * 最后更新时间
*/ */
...@@ -58,14 +58,14 @@ public class Account_bank_statement_import extends EntityMP implements Serializa ...@@ -58,14 +58,14 @@ public class Account_bank_statement_import extends EntityMP implements Serializa
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("write_date") @JsonProperty("write_date")
private Timestamp writeDate; private javatype writeDate;
/** /**
* 文件名 * 文件名
*/ */
@TableField(value = "filename") @TableField(value = "filename")
@JSONField(name = "filename") @JSONField(name = "filename")
@JsonProperty("filename") @JsonProperty("filename")
private String filename; private javatype filename;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -73,7 +73,7 @@ public class Account_bank_statement_import extends EntityMP implements Serializa ...@@ -73,7 +73,7 @@ public class Account_bank_statement_import extends EntityMP implements Serializa
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("__last_update") @JsonProperty("__last_update")
private Timestamp LastUpdate; private javatype LastUpdate;
/** /**
* ID * ID
*/ */
...@@ -81,35 +81,35 @@ public class Account_bank_statement_import extends EntityMP implements Serializa ...@@ -81,35 +81,35 @@ public class Account_bank_statement_import extends EntityMP implements Serializa
@TableId(value= "id",type=IdType.AUTO) @TableId(value= "id",type=IdType.AUTO)
@JSONField(name = "id") @JSONField(name = "id")
@JsonProperty("id") @JsonProperty("id")
private Long id; private javatype id;
/** /**
* 显示名称 * 显示名称
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "display_name") @JSONField(name = "display_name")
@JsonProperty("display_name") @JsonProperty("display_name")
private String displayName; private javatype displayName;
/** /**
* 银行对账单文件 * 银行对账单文件
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "data_file") @JSONField(name = "data_file")
@JsonProperty("data_file") @JsonProperty("data_file")
private byte[] dataFile; private javatype dataFile;
/** /**
* 最后更新人 * 最后更新人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "write_uid_text") @JSONField(name = "write_uid_text")
@JsonProperty("write_uid_text") @JsonProperty("write_uid_text")
private String writeUidText; private javatype writeUidText;
/** /**
* 创建人 * 创建人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "create_uid_text") @JSONField(name = "create_uid_text")
@JsonProperty("create_uid_text") @JsonProperty("create_uid_text")
private String createUidText; private javatype createUidText;
/** /**
* 创建人 * 创建人
*/ */
...@@ -117,7 +117,7 @@ public class Account_bank_statement_import extends EntityMP implements Serializa ...@@ -117,7 +117,7 @@ public class Account_bank_statement_import extends EntityMP implements Serializa
@TableField(value = "create_uid" , fill = FieldFill.INSERT) @TableField(value = "create_uid" , fill = FieldFill.INSERT)
@JSONField(name = "create_uid") @JSONField(name = "create_uid")
@JsonProperty("create_uid") @JsonProperty("create_uid")
private Long createUid; private javatype createUid;
/** /**
* 最后更新人 * 最后更新人
*/ */
...@@ -125,7 +125,7 @@ public class Account_bank_statement_import extends EntityMP implements Serializa ...@@ -125,7 +125,7 @@ public class Account_bank_statement_import extends EntityMP implements Serializa
@TableField(value = "write_uid") @TableField(value = "write_uid")
@JSONField(name = "write_uid") @JSONField(name = "write_uid")
@JsonProperty("write_uid") @JsonProperty("write_uid")
private Long writeUid; private javatype writeUid;
/** /**
* *
...@@ -148,7 +148,7 @@ public class Account_bank_statement_import extends EntityMP implements Serializa ...@@ -148,7 +148,7 @@ public class Account_bank_statement_import extends EntityMP implements Serializa
/** /**
* 设置 [文件名] * 设置 [文件名]
*/ */
public void setFilename(String filename){ public void setFilename(javatype filename){
this.filename = filename ; this.filename = filename ;
this.modify("filename",filename); this.modify("filename",filename);
} }
......
...@@ -48,7 +48,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -48,7 +48,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
@TableField(value = "rounding_method") @TableField(value = "rounding_method")
@JSONField(name = "rounding_method") @JSONField(name = "rounding_method")
@JsonProperty("rounding_method") @JsonProperty("rounding_method")
private String roundingMethod; private javatype roundingMethod;
/** /**
* 最后更新时间 * 最后更新时间
*/ */
...@@ -57,21 +57,21 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -57,21 +57,21 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("write_date") @JsonProperty("write_date")
private Timestamp writeDate; private javatype writeDate;
/** /**
* 舍入策略 * 舍入策略
*/ */
@TableField(value = "strategy") @TableField(value = "strategy")
@JSONField(name = "strategy") @JSONField(name = "strategy")
@JsonProperty("strategy") @JsonProperty("strategy")
private String strategy; private javatype strategy;
/** /**
* 显示名称 * 显示名称
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "display_name") @JSONField(name = "display_name")
@JsonProperty("display_name") @JsonProperty("display_name")
private String displayName; private javatype displayName;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -79,21 +79,21 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -79,21 +79,21 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("__last_update") @JsonProperty("__last_update")
private Timestamp LastUpdate; private javatype LastUpdate;
/** /**
* 名称 * 名称
*/ */
@TableField(value = "name") @TableField(value = "name")
@JSONField(name = "name") @JSONField(name = "name")
@JsonProperty("name") @JsonProperty("name")
private String name; private javatype name;
/** /**
* 舍入精度 * 舍入精度
*/ */
@TableField(value = "rounding") @TableField(value = "rounding")
@JSONField(name = "rounding") @JSONField(name = "rounding")
@JsonProperty("rounding") @JsonProperty("rounding")
private Double rounding; private javatype rounding;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -102,7 +102,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -102,7 +102,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("create_date") @JsonProperty("create_date")
private Timestamp createDate; private javatype createDate;
/** /**
* ID * ID
*/ */
...@@ -110,28 +110,28 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -110,28 +110,28 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
@TableId(value= "id",type=IdType.AUTO) @TableId(value= "id",type=IdType.AUTO)
@JSONField(name = "id") @JSONField(name = "id")
@JsonProperty("id") @JsonProperty("id")
private Long id; private javatype id;
/** /**
* 创建人 * 创建人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "create_uid_text") @JSONField(name = "create_uid_text")
@JsonProperty("create_uid_text") @JsonProperty("create_uid_text")
private String createUidText; private javatype createUidText;
/** /**
* 科目 * 科目
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "account_id_text") @JSONField(name = "account_id_text")
@JsonProperty("account_id_text") @JsonProperty("account_id_text")
private String accountIdText; private javatype accountIdText;
/** /**
* 最后更新人 * 最后更新人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "write_uid_text") @JSONField(name = "write_uid_text")
@JsonProperty("write_uid_text") @JsonProperty("write_uid_text")
private String writeUidText; private javatype writeUidText;
/** /**
* 科目 * 科目
*/ */
...@@ -139,7 +139,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -139,7 +139,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
@TableField(value = "account_id") @TableField(value = "account_id")
@JSONField(name = "account_id") @JSONField(name = "account_id")
@JsonProperty("account_id") @JsonProperty("account_id")
private Long accountId; private javatype accountId;
/** /**
* 创建人 * 创建人
*/ */
...@@ -147,7 +147,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -147,7 +147,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
@TableField(value = "create_uid" , fill = FieldFill.INSERT) @TableField(value = "create_uid" , fill = FieldFill.INSERT)
@JSONField(name = "create_uid") @JSONField(name = "create_uid")
@JsonProperty("create_uid") @JsonProperty("create_uid")
private Long createUid; private javatype createUid;
/** /**
* 最后更新人 * 最后更新人
*/ */
...@@ -155,7 +155,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -155,7 +155,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
@TableField(value = "write_uid") @TableField(value = "write_uid")
@JSONField(name = "write_uid") @JSONField(name = "write_uid")
@JsonProperty("write_uid") @JsonProperty("write_uid")
private Long writeUid; private javatype writeUid;
/** /**
* *
...@@ -186,7 +186,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -186,7 +186,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
/** /**
* 设置 [舍入方法] * 设置 [舍入方法]
*/ */
public void setRoundingMethod(String roundingMethod){ public void setRoundingMethod(javatype roundingMethod){
this.roundingMethod = roundingMethod ; this.roundingMethod = roundingMethod ;
this.modify("rounding_method",roundingMethod); this.modify("rounding_method",roundingMethod);
} }
...@@ -194,7 +194,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -194,7 +194,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
/** /**
* 设置 [舍入策略] * 设置 [舍入策略]
*/ */
public void setStrategy(String strategy){ public void setStrategy(javatype strategy){
this.strategy = strategy ; this.strategy = strategy ;
this.modify("strategy",strategy); this.modify("strategy",strategy);
} }
...@@ -202,7 +202,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -202,7 +202,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
/** /**
* 设置 [名称] * 设置 [名称]
*/ */
public void setName(String name){ public void setName(javatype name){
this.name = name ; this.name = name ;
this.modify("name",name); this.modify("name",name);
} }
...@@ -210,7 +210,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -210,7 +210,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
/** /**
* 设置 [舍入精度] * 设置 [舍入精度]
*/ */
public void setRounding(Double rounding){ public void setRounding(javatype rounding){
this.rounding = rounding ; this.rounding = rounding ;
this.modify("rounding",rounding); this.modify("rounding",rounding);
} }
...@@ -218,7 +218,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable { ...@@ -218,7 +218,7 @@ public class Account_cash_rounding extends EntityMP implements Serializable {
/** /**
* 设置 [科目] * 设置 [科目]
*/ */
public void setAccountId(Long accountId){ public void setAccountId(javatype accountId){
this.accountId = accountId ; this.accountId = accountId ;
this.modify("account_id",accountId); this.modify("account_id",accountId);
} }
......
...@@ -48,14 +48,14 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -48,14 +48,14 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
@TableField(value = "default_pos_id") @TableField(value = "default_pos_id")
@JSONField(name = "default_pos_id") @JSONField(name = "default_pos_id")
@JsonProperty("default_pos_id") @JsonProperty("default_pos_id")
private Integer defaultPosId; private javatype defaultPosId;
/** /**
* 小计 * 小计
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "subtotal") @JSONField(name = "subtotal")
@JsonProperty("subtotal") @JsonProperty("subtotal")
private Double subtotal; private javatype subtotal;
/** /**
* 硬币/账单 价值 * 硬币/账单 价值
*/ */
...@@ -63,7 +63,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -63,7 +63,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
@TableField(value = "coin_value") @TableField(value = "coin_value")
@JSONField(name = "coin_value") @JSONField(name = "coin_value")
@JsonProperty("coin_value") @JsonProperty("coin_value")
private Double coinValue; private javatype coinValue;
/** /**
* ID * ID
*/ */
...@@ -71,7 +71,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -71,7 +71,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
@TableId(value= "id",type=IdType.AUTO) @TableId(value= "id",type=IdType.AUTO)
@JSONField(name = "id") @JSONField(name = "id")
@JsonProperty("id") @JsonProperty("id")
private Long id; private javatype id;
/** /**
* 最后更新时间 * 最后更新时间
*/ */
...@@ -80,7 +80,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -80,7 +80,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "write_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("write_date") @JsonProperty("write_date")
private Timestamp writeDate; private javatype writeDate;
/** /**
* 创建时间 * 创建时间
*/ */
...@@ -89,7 +89,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -89,7 +89,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "create_date" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("create_date") @JsonProperty("create_date")
private Timestamp createDate; private javatype createDate;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -97,35 +97,35 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -97,35 +97,35 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("__last_update") @JsonProperty("__last_update")
private Timestamp LastUpdate; private javatype LastUpdate;
/** /**
* 显示名称 * 显示名称
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "display_name") @JSONField(name = "display_name")
@JsonProperty("display_name") @JsonProperty("display_name")
private String displayName; private javatype displayName;
/** /**
* 货币和账单编号 * 货币和账单编号
*/ */
@TableField(value = "number") @TableField(value = "number")
@JSONField(name = "number") @JSONField(name = "number")
@JsonProperty("number") @JsonProperty("number")
private Integer number; private javatype number;
/** /**
* 创建人 * 创建人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "create_uid_text") @JSONField(name = "create_uid_text")
@JsonProperty("create_uid_text") @JsonProperty("create_uid_text")
private String createUidText; private javatype createUidText;
/** /**
* 最后更新人 * 最后更新人
*/ */
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "write_uid_text") @JSONField(name = "write_uid_text")
@JsonProperty("write_uid_text") @JsonProperty("write_uid_text")
private String writeUidText; private javatype writeUidText;
/** /**
* 钱箱 * 钱箱
*/ */
...@@ -133,7 +133,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -133,7 +133,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
@TableField(value = "cashbox_id") @TableField(value = "cashbox_id")
@JSONField(name = "cashbox_id") @JSONField(name = "cashbox_id")
@JsonProperty("cashbox_id") @JsonProperty("cashbox_id")
private Long cashboxId; private javatype cashboxId;
/** /**
* 创建人 * 创建人
*/ */
...@@ -141,7 +141,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -141,7 +141,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
@TableField(value = "create_uid" , fill = FieldFill.INSERT) @TableField(value = "create_uid" , fill = FieldFill.INSERT)
@JSONField(name = "create_uid") @JSONField(name = "create_uid")
@JsonProperty("create_uid") @JsonProperty("create_uid")
private Long createUid; private javatype createUid;
/** /**
* 最后更新人 * 最后更新人
*/ */
...@@ -149,7 +149,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -149,7 +149,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
@TableField(value = "write_uid") @TableField(value = "write_uid")
@JSONField(name = "write_uid") @JSONField(name = "write_uid")
@JsonProperty("write_uid") @JsonProperty("write_uid")
private Long writeUid; private javatype writeUid;
/** /**
* *
...@@ -180,7 +180,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -180,7 +180,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
/** /**
* 设置 [在开业或结束这个销售点的余额时,默认情况下使用这个钱箱行] * 设置 [在开业或结束这个销售点的余额时,默认情况下使用这个钱箱行]
*/ */
public void setDefaultPosId(Integer defaultPosId){ public void setDefaultPosId(javatype defaultPosId){
this.defaultPosId = defaultPosId ; this.defaultPosId = defaultPosId ;
this.modify("default_pos_id",defaultPosId); this.modify("default_pos_id",defaultPosId);
} }
...@@ -188,7 +188,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -188,7 +188,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
/** /**
* 设置 [硬币/账单 价值] * 设置 [硬币/账单 价值]
*/ */
public void setCoinValue(Double coinValue){ public void setCoinValue(javatype coinValue){
this.coinValue = coinValue ; this.coinValue = coinValue ;
this.modify("coin_value",coinValue); this.modify("coin_value",coinValue);
} }
...@@ -196,7 +196,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -196,7 +196,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
/** /**
* 设置 [货币和账单编号] * 设置 [货币和账单编号]
*/ */
public void setNumber(Integer number){ public void setNumber(javatype number){
this.number = number ; this.number = number ;
this.modify("number",number); this.modify("number",number);
} }
...@@ -204,7 +204,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable { ...@@ -204,7 +204,7 @@ public class Account_cashbox_line extends EntityMP implements Serializable {
/** /**
* 设置 [钱箱] * 设置 [钱箱]
*/ */
public void setCashboxId(Long cashboxId){ public void setCashboxId(javatype cashboxId){
this.cashboxId = cashboxId ; this.cashboxId = cashboxId ;
this.modify("cashbox_id",cashboxId); this.modify("cashbox_id",cashboxId);
} }
......
...@@ -47,7 +47,7 @@ public class Account_reconciliation_widget extends EntityMP implements Serializa ...@@ -47,7 +47,7 @@ public class Account_reconciliation_widget extends EntityMP implements Serializa
@TableField(exist = false) @TableField(exist = false)
@JSONField(name = "display_name") @JSONField(name = "display_name")
@JsonProperty("display_name") @JsonProperty("display_name")
private String displayName; private javatype displayName;
/** /**
* 最后修改日 * 最后修改日
*/ */
...@@ -55,7 +55,7 @@ public class Account_reconciliation_widget extends EntityMP implements Serializa ...@@ -55,7 +55,7 @@ public class Account_reconciliation_widget extends EntityMP implements Serializa
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss") @JSONField(name = "__last_update" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("__last_update") @JsonProperty("__last_update")
private Timestamp LastUpdate; private javatype LastUpdate;
/** /**
* ID * ID
*/ */
...@@ -63,7 +63,7 @@ public class Account_reconciliation_widget extends EntityMP implements Serializa ...@@ -63,7 +63,7 @@ public class Account_reconciliation_widget extends EntityMP implements Serializa
@TableId(value= "id",type=IdType.AUTO) @TableId(value= "id",type=IdType.AUTO)
@JSONField(name = "id") @JSONField(name = "id")
@JsonProperty("id") @JsonProperty("id")
private Long id; private javatype id;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册