using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Dto
{
///
/// 产品巡检状态详细
///
public class ProductInspectStatus
{
///
///
///
public ProductInspectStatus()
{
}
///
///
///
///
public ProductInspectStatus(Model.InspectRecord record)
{
}
///
///
///
public long ProductID { get; set; }
///
///
///
public string BelongType { get; set; }
///
///
///
public long BelongID { 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;
}
}