You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
423 B
C#
18 lines
423 B
C#
namespace Ds.Modules.DsEntity.Auth
|
|
{
|
|
/// <summary>
|
|
/// 用户表和租户关系表
|
|
/// </summary>
|
|
public class Ds_Sys_Users_Tenant : BaseEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 用户编码 唯一性
|
|
/// </summary>
|
|
public long UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 企业信息Id
|
|
/// </summary>
|
|
public long TenantInfoId { get; set; }
|
|
}
|
|
} |