using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace yunneiWCS.EnumDefine
{
public class convDB
{
/// 心跳
///
///
public string R_handShake { get; set; }
/// 模式 1手动 2自动 3报警
///
///
public string R_mode { get; set; }
/// 托盘位置 0无货 1外面 2里面
///
///
public string R_position { get; set; }
/// 任务号
///
///
public string R_taskId { get; set; }
/// 外形检查 0正常 1超
///
///
public string R_check { get; set; }
/// 是否报警 1=故障 0=正常
///
///
public string R_isAlarm { get; set; }
/// 删除输送线任务 1=删除任务 0=正常
///
///
public string W_delte { get; set; }
///
/// 上料完成信号 【EditBy shaocx,2022-03-15】
///
public string W_LoadMaterialConfirm { get; set; }
///
/// 工件记忆信号 【EditBy shaocx,2022-03-15】
///
public string W_GJJY { get; set; }
///
/// 总产量 【EditBy shaocx,2022-03-15】
///
public string W_All_Qty { get; set; }
///
/// 今天产量 【EditBy shaocx,2022-03-15】
///
public string W_Today_Qty { get; set; }
///
/// 当月产量 【EditBy shaocx,2022-03-15】
///
public string W_Month_Qty { get; set; }
///
///
///
///
///
///
///
///
///
///
/// 上料完成信号 【EditBy shaocx,2022-03-15】
/// 工件记忆信号 【EditBy shaocx,2022-03-15】
public convDB(string HandShake, string Mode, string Position, string TaskId, string Check, string IsAlarm, string Del, string _W_LoadMaterialConfirm, string _W_GJJY, string _W_All_Qty, string _W_Today_Qty, string _W_Month_Qty)
{
R_handShake = HandShake;
R_mode = Mode;
R_position = Position;
R_taskId = TaskId;
R_check = Check;
R_isAlarm = IsAlarm;
W_delte = Del;
W_LoadMaterialConfirm = _W_LoadMaterialConfirm;
W_GJJY = _W_GJJY;
W_All_Qty = _W_All_Qty;
W_Today_Qty = _W_Today_Qty;
W_Month_Qty = _W_Month_Qty;
}
}
}