Skip to content

Commit

Permalink
fix(关系配置): 关系配置增加反转关系名称字段 (#591)
Browse files Browse the repository at this point in the history
  • Loading branch information
fighter-wang authored Dec 5, 2024
1 parent f2bed57 commit b890f4e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b890f4e

Please sign in to comment.