//------------------------------------------------------------------------------ // // 此代码已从模板生成。 // // 手动更改此文件可能导致应用程序出现意外的行为。 // 如果重新生成代码,将覆盖对此文件的手动更改。 // //------------------------------------------------------------------------------ namespace AUTS.Domain.Entities { using System; using System.Collections.Generic; public partial class TBL_RepairRequest { public int ID { get; set; } public int UserID { get; set; } public string RepairRequestNum { get; set; } public int ProductID { get; set; } public string Barcode { get; set; } public string ProductImage { get; set; } public string RejectSource { get; set; } public string RejectCode { get; set; } public string RejectDesc { get; set; } public System.DateTime CreateTime { get; set; } public System.DateTime UpdateTime { get; set; } public string RepairProgress { get; set; } public int RepairResult { get; set; } public int RepairLogID { get; set; } public int Repairier { get; set; } public string Remark { get; set; } public string DetailRemark { get; set; } public int Statement { get; set; } //public string ProductMarking { get; set; } public int Payer { get; set; } public int Storage { get; set; } public string Salesman { get; set; } } }