using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models.Entity.LottomatBaseDB { [ZXTableName("ZXDataBase.Base_DataItemDetail")] public class Base_DataItemDetail { #region 实体成员 [Key(true)] [IsInsert] /// /// 明细主键 /// public string ItemDetailId { get; set; } [IsInsert] /// /// 分类主键 /// public string ItemId { get; set; } [IsInsert] /// /// 父级主键 /// public string ParentId { get; set; } [IsInsert] /// /// 编码 /// public string ItemCode { get; set; } [IsInsert] /// /// 名称 /// public string ItemName { get; set; } [IsInsert] /// /// 值 /// public string ItemValue { get; set; } [IsInsert] /// /// 快速查询 /// public string QuickQuery { get; set; } [IsInsert] /// /// 简拼 /// public string SimpleSpelling { get; set; } [IsInsert] /// /// 是否默认 /// public int IsDefault { get; set; } [IsInsert] /// /// 排序码 /// public int? SortCode { get; set; } [IsInsert] /// /// 删除标记 /// public int DeleteMark { get; set; } [IsInsert] /// /// 有效标志 /// public int? EnabledMark { get; set; } [IsInsert] /// /// 备注 /// public string Description { get; set; } [IsInsert] /// /// 创建日期 /// public DateTime CreateDate { get; set; } [IsInsert] /// /// 创建用户主键 /// public string CreateUserId { get; set; } [IsInsert] /// /// 创建用户 /// public string CreateUserName { get; set; } [IsInsert] /// /// 修改日期 /// public DateTime ModifyDate { get; set; } [IsInsert] /// /// 修改用户主键 /// public string ModifyUserId { get; set; } [IsInsert] /// /// 修改用户 /// public string ModifyUserName { get; set; } [IsInsert] /// /// 是否热门 /// public bool IsHot { get; set; } [IsInsert] /// /// 是否推荐 /// public bool IsRecommend { get; set; } [IsInsert] /// /// 是否在二级页面显示详情 /// public bool IsShowHomePage { get; set; } #endregion } }