using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models.Views { public class FriendLinksModel { #region 实体成员 /// /// PK /// /// //public int? PK { get; set; } /// /// ID /// /// public string ID { get; set; } /// /// 链接类型 /// /// public string Type { get; set; } /// /// 链接类型名称 /// /// public string TypeName { get; set; } /// /// 名称 /// /// public string Name { get; set; } /// /// 地址 /// /// public string Url { get; set; } /// /// 是否启用 /// /// public bool? IsEnable { get; set; } /// /// 是否删除 /// /// public bool? IsDelete { get; set; } /// /// 创建人ID /// /// public string CreateUserId { get; set; } /// /// 创建人 /// /// public string CreateUserName { get; set; } /// /// 创建时间 /// /// public string CreateTime { get; set; } /// /// 修改人ID /// /// public string ModifyUserId { get; set; } /// /// 修改人 /// /// public string ModifyUserName { get; set; } /// /// 修改时间 /// /// public string ModifyDate { get; set; } /// /// 备注 /// /// public string Remark { get; set; } /// /// 有效期,单位:年。0表示永不失效 /// /// public int TermOfValidity { get; set; } #endregion } }