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 decimal 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 }