Commit 469b900a authored by tianbo's avatar tianbo

feat(amos-boot-module-ymt): 设置字段冗余列属性

- 在 IdxBizJgSupervisionInfo 类中,将 orgBranchCode 和 companyOrgBranchCode 字段的 FieldDisplayDefine 注解添加 isRepeatColumn 属性 - 此修改旨在修改记录时不记录冗余字段
parent 7f104959
...@@ -48,7 +48,7 @@ public class IdxBizJgSupervisionInfo extends TzsBaseEntity implements IBaseChang ...@@ -48,7 +48,7 @@ public class IdxBizJgSupervisionInfo extends TzsBaseEntity implements IBaseChang
/** /**
* *
*/ */
@FieldDisplayDefine(value = "管辖分局组织机构代码") @FieldDisplayDefine(value = "管辖分局组织机构代码", isRepeatColumn = true)
@TableField("\"ORG_BRANCH_CODE\"") @TableField("\"ORG_BRANCH_CODE\"")
private String orgBranchCode; private String orgBranchCode;
/** /**
...@@ -56,7 +56,7 @@ public class IdxBizJgSupervisionInfo extends TzsBaseEntity implements IBaseChang ...@@ -56,7 +56,7 @@ public class IdxBizJgSupervisionInfo extends TzsBaseEntity implements IBaseChang
* */ * */
@TableField(value ="\"COMPANY_ORG_BRANCH_CODE\"") @TableField(value ="\"COMPANY_ORG_BRANCH_CODE\"")
@FieldDisplayDefine(value = "公司/组织机构代码") @FieldDisplayDefine(value = "公司/组织机构代码", isRepeatColumn = true)
private String companyOrgBranchCode; private String companyOrgBranchCode;
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment