using System; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Recruitment.Admin.Commons.Entitys; namespace Znyc.Recruitment.Admin.Security.Entitys { /// /// 系统应用表,数据实体对象 /// [Table("sys_app")] [Serializable] public class APPEntity : BaseEntity { /// /// 默认构造函数(需要初始化属性的在此处理) /// public APPEntity() { CreatedTime = DateTime.Now; ModifiedTime = DateTime.Now; IsDeleted = false; } /// /// 应用Id /// [MaxLength(50)] [Description("应用Id")] public virtual string AppId { get; set; } /// /// 应用密钥 /// [MaxLength(256)] [Description("应用密钥")] public virtual string AppSecret { get; set; } /// /// 有效标志 /// public virtual bool IsEnabled { get; set; } } }