You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
693 B

namespace AuthorityManagementCenter.Models;
public class TenantModel
{
public Guid Id { get; set; }
/// <summary>
/// 公司名称
/// </summary>
public string CorporateName { get; set; }
/// <summary>
/// 邮箱
/// </summary>
public string Mailbox { get; set; }
/// <summary>
/// 姓名
/// </summary>
public string FullName { get; set; }
/// <summary>
/// 电话
/// </summary>
public string Telephone { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remarks { get; set; }
/// <summary>
/// 创造时间。
/// </summary>
public DateTime CreationTime { get; set; }
}