using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace yunneiWCS.EnumDefine
{
public class convEntity
{
/// 心跳
///
///
public string handShake { get; set; }
/// 模式 1手动 2自动 3报警
///
///
public string mode { get; set; }
/// 托盘位置 0无货 1外面 2里面
///
///
public string position { get; set; }
/// 任务号
///
///
public long taskId { get; set; }
/// 外形检查 0正常 1超
///
///
public string check { get; set; }
/// 是否报警 1=故障 0=正常
///
///
public string isAlarm { get; set; }
///
/// 上料完成信号 【EditBy shaocx,2022-03-15】
///
public bool W_LoadMaterialConfirm { get; set; }
///
/// 工件记忆信号 【EditBy shaocx,2022-03-15】
///
public bool W_GJJY { get; set; }
}
}