//------------------------------------------------------------------------------ // // 此代码已从模板生成。 // // 手动更改此文件可能导致应用程序出现意外的行为。 // 如果重新生成代码,将覆盖对此文件的手动更改。 // //------------------------------------------------------------------------------ namespace Models { using System; using System.Collections.Generic; public partial class PartsStatusHistory { public string CUST_CODE { get; set; } public string Dispenser { get; set; } public string Device { get; set; } public string PartsCode { get; set; } public string PartsName { get; set; } public Nullable PartsType { get; set; } public string Description { get; set; } public Nullable FactoryValue { get; set; } public Nullable UsedCount { get; set; } public Nullable RunningTime { get; set; } public Nullable ResetDate { get; set; } public Nullable WarnDate { get; set; } public Nullable UpdateDate { get; set; } public Nullable CreateDate { get; set; } public string UserAccount { get; set; } } }