using System; using System.ComponentModel.DataAnnotations; using Chloe.Annotations; namespace WaterCloud.Domain.SystemManage { /// /// 创 建:超级管理员 /// 日 期:2020-05-21 14:38 /// 描 述:字段管理实体类 /// [TableAttribute("sys_ModuleFields")] public class ModuleFieldsEntity : IEntity,ICreationAudited,IModificationAudited,IDeleteAudited { /// /// /// /// [ColumnAttribute("F_Id", IsPrimaryKey = true)] public string F_Id { get; set; } /// /// /// /// [Required(ErrorMessage = "模块不能为空")] public string F_ModuleId { get; set; } /// /// /// /// [Required(ErrorMessage = "编号不能为空")] public string F_EnCode { get; set; } /// /// /// /// [Required(ErrorMessage = "名称不能为空")] public string F_FullName { 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; } public bool? F_IsPublic { get; set; } } }