using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; using Tiger.Model; namespace Tiger.Model { /// /// 实体:V_BAS_PROD /// [Serializable] [SugarTable("V_BAS_PROD")] public class V_BAS_PROD : iViewEntity, iTableHasAuth { #region 构造函数 /// /// 实体:V_BAS_PROD /// public V_BAS_PROD() {} #endregion #region 公共属性 /// /// /// public string ID { get; set; } /// /// /// public DateTime CREATE_TIME { get; set; } = DateTime.MinValue; /// /// /// public string CREATE_USER { get; set; } /// /// /// public DateTime UPDATE_TIME { get; set; } = DateTime.MinValue; /// /// /// public string UPDATE_USER { get; set; } /// /// /// public bool GHOST_ROW { get; set; } = false; /// /// /// public string AUTH_ORG { get; set; } /// /// /// public string AUTH_PROD { get; set; } /// /// /// public string AUTH_WH { get; set; } /// /// /// public string ITEM_CODE { get; set; } /// /// /// public string ITEM_NAME { get; set; } /// /// /// public string ITEM_DESC { get; set; } /// /// /// public string ITEM_TYPE { get; set; } /// /// /// public string ITEM_VER { get; set; } /// /// /// public string SPEC { get; set; } /// /// /// public string SPEC_WH { get; set; } /// /// /// public string COLOR { get; set; } /// /// /// public string UNIT { get; set; } /// /// /// public string IS_PROD { get; set; } /// /// /// public string IS_ACTIVE { get; set; } /// /// /// public string CTRL_MODE { get; set; } /// /// /// public DateTime RELEASE_TIME { get; set; } = DateTime.MinValue; /// /// /// public DateTime EFFECTIVE_TIME { get; set; } = DateTime.MinValue; /// /// /// public double VALIDITY_DAYS { get; set; } /// /// /// public int DLVY_TYPE { get; set; } /// /// /// public string ENABLE_FIFO { get; set; } /// /// /// public string REMARK { get; set; } #endregion #region 虚拟属性 /*例子 [SugarColumn(IsIgnore = true)] public string FieldName { get; set; } */ #endregion #region 枚举变量 /*例子 public enum FieldNames { [Description("枚举描述0")] Enum0, [Description("枚举描述1")] Enum1, } */ #endregion #region 公共方法 #endregion }//endClass }