using HH.WCS.Hexafluo.util;
using HH.WCS.Hexafluo.wms;
using System;
namespace HH.WCS.ZCQTJ.Entitys
{
[ST("任务执行情况表")]
public class TN_Service_execEntitys : BaseModel
{
///
/// 任务号
///
public string CN_S_TASK_NO { get; set; }
///
/// 任务类型
///
public string CN_S_TASK_TYPE { get; set; }
///
/// 托盘码
///
public string CN_S_TRAY_CODE { get; set; }
///
/// 物料编码
///
public string CN_S_ITEM_CODE { get; set; }
///
/// 物料名称
///
public string CN_S_ITEM_NAME { get; set; }
///
/// 优先级
///
public int? CN_N_PRIORITY { get; set; }
///
/// 起点
///
public string CN_StartBit { get; set; }
///
/// 终点
///
public string CN_S_END_LOCATION { get; set; }
///
/// 时间
///
public DateTime? CN_T_CREATE { get; set; }
///
/// 成功还是失败
///
public string CN_C_COMPLETE { get; set; }
///
/// 异步回滚标志
///
public string CN_C_SEND_MES { get; set; }
///
/// 错误信息
///
public string CN_S_MSG { get; set; }
///
/// 数量
///
public decimal? CN_F_QUANTITY { get; set; }
///
/// 循环次数
///
public int? CN_N_REQUEST_TYPE { get; set; }
///
/// 托盘类型
///
public string CN_S_TRAY_TYPE { get; set; }
}
}