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#

11 months ago
namespace Ds.Modules.DsEntity.Auth
{
/// <summary>
/// 用户表和租户关系表
/// </summary>
public class Ds_Sys_Users_Tenant : BaseEntityTenant
{
/// <summary>
/// 用户编码 唯一性
/// </summary>
public long UserId { get; set; }
/// <summary>
/// 企业信息Id
/// </summary>
11 months ago
public long TenantInfoId { get; set; }
11 months ago
}
}