济宁李尔接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
3.1 KiB

using System;
namespace DBModel
{
/// <summary>
/// IO_CONTROL实体类
/// </summary>
[Serializable]
public class IO_CONTROL
{
/// <summary>
/// 管理任务与控制任务接口表主键
/// </summary>
public decimal CONTROL_ID { get; set; }
/// <summary>
/// 关联任务
/// </summary>
public decimal? RELATIVE_CONTROL_ID { get; set; }
/// <summary>
/// 管理任务索引
/// </summary>
public decimal? MANAGE_ID { get; set; }
/// <summary>
/// 托盘条码
/// </summary>
public string STOCK_BARCODE { get; set; }
/// <summary>
/// 管理任务类型编码
/// </summary>
public string MANAGE_TASK_TYPE { get; set; }
/// <summary>
/// 控制任务类型编码
/// </summary>
public int? CONTROL_TASK_TYPE { get; set; }
/// <summary>
/// 控制任务优先级
/// </summary>
public string CONTROL_TASK_LEVEL { get; set; }
/// <summary>
/// 起始仓库编码
/// </summary>
public string START_WAREHOUSE_CODE { get; set; }
/// <summary>
/// 起始站台或者货位编码
/// </summary>
public string START_DEVICE_CODE { get; set; }
/// <summary>
/// 终止仓库编码
/// </summary>
public string END_WAREHOUSE_CODE { get; set; }
/// <summary>
/// 终止站台或者货位编码
/// </summary>
public string END_DEVICE_CODE { get; set; }
/// <summary>
/// 任务状态:0 等待执行、10执行中、47左放货有货、48右放货有货、900人工取消任务、980出库异常取消任务(包含54 取货空、56 左伸取远端进货端有货、57 右伸取远端进货端有货)、40 更改终止货位、999完成
/// </summary>
public int? CONTROL_STATUS { get; set; }
/// <summary>
/// 设备故障信息
/// </summary>
public string ERROR_TEXT { get; set; }
/// <summary>
/// 开始时间
/// </summary>
public string CONTROL_BEGIN_TIME { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public string CONTROL_END_TIME { get; set; }
/// <summary>
/// 备注
/// </summary>
public string CONTROL_REMARK { get; set; }
/// <summary>
/// 批号
/// </summary>
public string CONTORL_BATCH { get; set; }
/// <summary>
/// 逻辑区域
/// </summary>
public string LOGIC_AREA { get; set; }
/// <summary>
/// B大纸箱;S小周转箱
/// </summary>
public string CELL_MODEL { get; set; }
/// <summary>
///
/// </summary>
public string WORK_MODE { get; set; }
/// <summary>
///
/// </summary>
public string GOODS_BARCODE { get; set; }
/// <summary>
///
/// </summary>
public string GOODS_NUM { get; set; }
}
}