using System; using Chloe.Annotations; using System.ComponentModel.DataAnnotations; namespace WaterCloud.Domain.SystemOrganize { /// /// 创 建:超级管理员 /// 日 期:2020-06-12 13:50 /// 描 述:系统设置实体类 /// [TableAttribute("sys_SystemSet")] public class SystemSetEntity : IEntity,ICreationAudited,IModificationAudited,IDeleteAudited { /// /// /// /// [ColumnAttribute("F_Id", IsPrimaryKey = true)] public string F_Id { get; set; } /// /// Logo图标 /// /// [Required(ErrorMessage = "Logo图标不能为空")] public string F_Logo { get; set; } /// /// Logo编号 /// /// [Required(ErrorMessage = "Logo编号不能为空")] public string F_LogoCode { get; set; } /// /// 项目名称 /// /// [Required(ErrorMessage = "项目名称不能为空")] public string F_ProjectName { get; set; } /// /// 公司名称 /// /// [Required(ErrorMessage = "公司名称不能为空")] public string F_CompanyName { get; set; } /// /// /// /// [Required(ErrorMessage = "系统账户不能为空")] public string F_AdminAccount { get; set; } /// /// /// /// [Required(ErrorMessage = "系统密码不能为空")] public string F_AdminPassword { get; set; } /// /// /// /// public bool? F_DeleteMark { get; set; } /// /// /// /// public bool? F_EnabledMark { get; set; } /// /// /// /// public string F_Description { get; set; } /// /// /// /// public DateTime? F_CreatorTime { get; set; } /// /// /// /// public string F_CreatorUserId { get; set; } /// /// /// /// public DateTime? F_LastModifyTime { get; set; } /// /// /// /// public string F_LastModifyUserId { get; set; } /// /// /// /// public DateTime? F_DeleteTime { get; set; } /// /// /// /// public string F_DeleteUserId { get; set; } /// /// /// /// [Required(ErrorMessage = "联系电话不能为空")] public string F_MobilePhone { get; set; } /// /// /// /// [Required(ErrorMessage = "联系人不能为空")] public string F_PrincipalMan { get; set; } /// /// /// /// [Required(ErrorMessage = "到期时间不能为空")] public DateTime? F_EndTime { get; set; } /// /// /// /// public string F_DbString { get; set; } /// /// /// /// public string F_DBProvider { get; set; } [Required(ErrorMessage = "域名不能为空")] public string F_HostUrl { get; set; } } }