//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace EMIS.Entities { #pragma warning disable 1573 using System; using System.Collections.Generic; /// /// ET_StockIn /// public partial class ET_StockIn { public ET_StockIn() { this.ET_StockInDetail = new HashSet(); } /// /// StockInID /// public System.Guid StockInID { get; set; } /// /// StockInDocumentNo /// public string StockInDocumentNo { get; set; } /// /// StockInNumber /// public string StockInNumber { get; set; } /// /// OrdersNo /// public string OrdersNo { get; set; } /// /// StockInType /// public Nullable StockInType { get; set; } /// /// StockInSumMoney /// public Nullable StockInSumMoney { get; set; } /// /// StockInTime /// public Nullable StockInTime { get; set; } /// /// SchoolyearID /// public Nullable SchoolyearID { get; set; } /// /// HandlerUserID /// public Nullable HandlerUserID { get; set; } /// /// SupplierID /// public Nullable SupplierID { get; set; } /// /// RecordStatus /// public Nullable RecordStatus { get; set; } /// /// CreateUserID /// public Nullable CreateUserID { get; set; } /// /// CreateTime /// public Nullable CreateTime { get; set; } /// /// ModifyUserID /// public Nullable ModifyUserID { get; set; } /// /// ModifyTime /// public Nullable ModifyTime { get; set; } /// /// Desc /// public string Desc { get; set; } /// /// CF_Publish /// public virtual CF_Publish CF_Publish { get; set; } /// /// CF_Schoolyear /// public virtual CF_Schoolyear CF_Schoolyear { get; set; } /// /// ET_StockInDetail /// public virtual HashSet ET_StockInDetail { get; set; } } }