fix(关系配置): 关系配置增加反转关系名称字段 (#591)
This commit is contained in:
parent
f2bed57dc6
commit
b890f4e520
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue