Files
juipnet/Services/Hncore.Pass.Manage/Domain/AuthorityManagerDataDomain.cs
“wanyongkang” b562aba2b1 忽略dll文件git
2023-07-29 10:19:42 +08:00

57 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Hncore.Infrastructure.DDD;
namespace Hncore.Pass.Manage.Domain
{
/// <summary>
/// 管理员项目映射实体模型类
/// </summary>
///
public class AuthorityManagerDataDomain : AggregateRoot<int>, ITenant
{
/// <summary>
/// 楼宇ID
/// <summary>
public override int Id { get; set; }
/// <summary>
/// 所属物业ID
/// <summary>
public int TenantId { get; set; }
/// <summary>
/// 创建时间
/// <summary>
public DateTime CreateTime { get; set; } = DateTime.Now;
/// <summary>
/// 更新时间
/// <summary>
public DateTime UpdateTime { get; set; } = DateTime.Now;
/// <summary>
/// 创建人ID
/// <summary>
public int CreatorId { get; set; }
/// <summary>
/// 更新人ID
/// <summary>
public int UpdatorId { get; set; }
/// <summary>
/// 软删除标记0.代表正常1.代表已删除
/// <summary>
public int DeleteTag { get; set; }
/// <summary>
/// 管理员数据库ID
/// </summary>
public int ManagerId { get; set; }
/// <summary>
/// 项目编码
/// </summary>
public int ProjectCode { get; set; }
}
}