using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models.Entity.LottomatBaseDB { [ZXTableName("ZXDataBase.Base_DataItem")] public class Base_DataItem { #region 实体成员 [Key(true)] [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 int IsTree { get; set; } [IsInsert] /// /// 导航标记 /// public int IsNav { get; set; } [IsInsert] /// /// 排序码 /// public int SortCode { get; set; } [IsInsert] /// /// 删除标记 /// public int DeleteMark { get; set; } /// /// 有效标志 /// 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; } #endregion } }