using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace MisDataSaveDate.MOM
{
///
/// 开工
///
public class JobFinished
{
///
/// 派工单ID
///
public string orderID { get; set; }
///
/// 派工任务ID
///
public string taskID { get; set; }
///
/// 工序ID
///
public decimal finishedQuantity { get; set; }
///
/// 操作时间
///
public string createTime { get; set; }
///
/// 操作人
///
public string endTime { get; set; }
///
/// 创建时间
///
public decimal beat { get; set; }
public string processNo { get; set; }
public string lastModifiedTime { get; set; }
public List inspectionInfo { get; set; }
public List materialInfo { get; set; }
public List workinghours { get; set; }
///
/// 操作:0取消开工,1开工
///
public string operation { get; set; }
}
public class InspectionInfo
{
public string Inspectcode { get; set; }
public string inspector { get; set; }
public string inspectionTime { get; set; }
public decimal qualifiedQuantity { get; set; }
public decimal unqualifiedQuantity { get; set; }
public string templetecode { get; set; }
public List inspectionDetails { get; set; }
}
public class InspectionDetail
{
public string inspectionItemID { get; set; }
public string inspectionItemNo { get; set; }
public string inspectionItemName { get; set; }
public string inspectionValue { get; set; }
public string inspectionStandardText { get; set; }
public string upperLimitSymbol { get; set; }
public decimal upperLimitValue { get; set; }
public string lowerLimitSymbol { get; set; }
public decimal lowerLimitValue { get; set; }
public decimal standardValue { get; set; }
public string inspectionResult { get; set; }
}
public class MaterialInfo
{
public string consumedMaterialNo { get; set; }
public string type { get; set; }
public decimal qty { get; set; }
public decimal qualifiedqty { get; set; }
public decimal unqualifiedqty { get; set; }
public string inspectionTool { get; set; }
public string batchNo { get; set; }
public string serialNo { get; set; }
}
public class Workinghours
{
public string employee { get; set; }
public decimal quantity { get; set; }
public decimal workingHours { get; set; }
public string operation { get; set; }
}
}