using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareTestForm
{
///
/// 模拟器公共业务实体类
///
public class SimulatorCommonEntity
{
public SimulatorCommonEntity()
{
}
///
/// 排产类型
///
public int scheduleOrderType { get; set; }
///
/// 报废任务号
///
public string bfTaskNo { get; set; }
///
/// 不良品任务号
///
public string blpTaskNo { get; set; }
///
/// 生产标记
///
public string prodFlag { get; set; }
///
/// 下料台号
///
public string UnloadingTable { get; set; }
///
/// 加工图纸号
///
public string recipeNumber { get; set; }
///
/// 加热炉号
///
public string heatingNumber { get; set; }
///
/// 排产下发是否携带流转卡号
///
public bool isIncludeProCard { get; set; }
///
/// 缓存区和热后出库滚道下料完成使用的设备ID
///
public string equipIdForBufferLayingOffCompleted { get; set; }
///
/// 零件号
///
public string partNumber { get; set; }
///
/// 零件名称
///
public string partName { get; set; }
///
/// 流转卡上的加工数量
///
public int quantity { get; set; }
///
/// 物料编码
///
public string materialCode { get; set; }
///
/// 出热物料编码
///
public string heatingOutCode { get; set; }
///
/// P3SS的任务ID
///
public string pId { get; set; }
///
/// MES的任务ID
///
public string mId { get; set; }
///
/// 质量预测结果(1建议免检 2建议检测)
///
public int qamsResult { get; set; }
///
/// 总体质检结果 (1 合格 2 不合格)
///
public int overallResult { get; set; }
///
/// 检测人
///
public string tester { get; set; }
///
/// 无损检测
///
public string ndt { get; set; }
public string logTitle { get; set; }
public string wareHousePlaceId { get; set; }
public string processCardNumber { get; set; }
public string rfid { get; set; }
public string taskNo { get; set; }
public string line { get; set; }
///
/// 生成的loadNumber
///
public int loadNumber { get; set; }
///
/// lineEntryTime
///
public string lineEntryTime { get; set; }
public int loadStatus { get; set; }
}
}