fix(关系配置): 关系配置增加反转关系名称字段 (#591)

This commit is contained in:
fighter-wang 2024-12-05 19:50:57 +08:00 committed by GitHub
parent f2bed57dc6
commit b890f4e520
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,10 @@ public class RelationEntity extends GenericEntity<String> {
@Column(length = 64, nullable = false)
private String name;
@Schema(description = "反转关系名称")
@Column(length = 64)
private String reverseName;
@Schema(description = "目标对象类型")
@Column(length = 32, nullable = false, updatable = false)
private String targetType;