Compare commits

..

No commits in common. "18966c0a93177ffc8db423fb3e92d16b7d9bbba3" and "ba638747dff57a546fc533caee528a81fecf6c00" have entirely different histories.

2 changed files with 4 additions and 2 deletions

View File

@ -16,8 +16,11 @@ public class Tenant {
private Long id;
private String contact; // 联系人
private String phone; // 联系人电话
@Column(unique = true)
private String name; // 租户名称
private String manager; // 租户管理员
@OneToOne
@JoinColumn(name = "manager", referencedColumnName = "username", insertable = false, updatable = false)
private UserHS managerEntity; // 租户管理员对象
private String symbol; // 租户标识
}

View File

@ -26,5 +26,4 @@ public class UserHS {
private String role;
private LocalDateTime createdAt;
private Boolean superAdmin = false;
private String tenant;
}