using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Dto { /// /// /// public class ProductInspectLastRecord { /// /// /// public ProductInspectLastRecord() { } /// /// /// /// public ProductInspectLastRecord(Model.InspectRecord record) { } /// /// /// public long ProductID { get; set; } /// /// /// public string BelongType { get; set; } /// /// /// public long BelongID { get; set; } /// /// 最后一次巡检日期 /// public string LastRecordDay { get; set; } /// /// 最后一次巡检人 /// public string LastInpectEmployee { get; set; } /// /// /// public string ProductName { get; set; } /// /// /// public string Catalog { get; set; } /// /// /// public string ProductCode { get; set; } /// /// /// public long RecordID { get; set; } = 0; /// /// /// public int WorryCount { get; set; } = 0; /// /// /// public string ProgressInfo { get; set; } = "未巡检"; /// /// /// public int CompleteStatus { get; set; } = 0; } }