feat(entity): 添加公司名称字段的表映射配置
- 在CreditAdministrativeLicense实体中为companyName字段添加@TableField(exist = false)注解 - 在CreditBranch实体中为companyName字段添加@TableField(exist = false)注解 - 在CreditHistoricalLegalPerson实体中为companyName字段添加@TableField(exist = false)注解 - 在CreditNearbyCompany实体中为companyName字段添加@TableField(exist = false)注解 - 在CreditSuspectedRelationship实体中为companyName字段添加@TableField(exist = false)注解
This commit is contained in:
@@ -72,6 +72,7 @@ public class CreditAdministrativeLicense implements Serializable {
|
||||
private Integer companyId;
|
||||
|
||||
@Schema(description = "主体企业")
|
||||
@TableField(exist = false)
|
||||
private String companyName;
|
||||
|
||||
@Schema(description = "是否推荐")
|
||||
|
||||
@@ -56,6 +56,7 @@ public class CreditBranch implements Serializable {
|
||||
private Integer companyId;
|
||||
|
||||
@Schema(description = "主题企业")
|
||||
@TableField(exist = false)
|
||||
private String companyName;
|
||||
|
||||
@Schema(description = "是否推荐")
|
||||
|
||||
@@ -50,6 +50,7 @@ public class CreditHistoricalLegalPerson implements Serializable {
|
||||
private Integer companyId;
|
||||
|
||||
@Schema(description = "主体企业")
|
||||
@TableField(exist = false)
|
||||
private String companyName;
|
||||
|
||||
@Schema(description = "是否推荐")
|
||||
|
||||
@@ -80,6 +80,7 @@ public class CreditNearbyCompany implements Serializable {
|
||||
private Integer companyId;
|
||||
|
||||
@Schema(description = "主体企业")
|
||||
@TableField(exist = false)
|
||||
private String companyName;
|
||||
|
||||
@Schema(description = "纳税人识别号")
|
||||
|
||||
@@ -65,6 +65,7 @@ public class CreditSuspectedRelationship implements Serializable {
|
||||
private Integer companyId;
|
||||
|
||||
@Schema(description = "主体企业")
|
||||
@TableField(exist = false)
|
||||
private String companyName;
|
||||
|
||||
@Schema(description = "是否推荐")
|
||||
|
||||
Reference in New Issue
Block a user