using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareSda
{
public class StationDB2ObjForWriteComm
{
///
/// 站点编号
///
[Description("站点编号")]
public string StationCode { get; set; }
/////
///// 人工放行
/////
//[Description("人工放行")]
//public bool W_PersonAllow { get; set; }
///
/// 扫码记录清除
///
[Description("扫码记录清除")]
public bool W_PartClear { get; set; }
///
/// NG包标记
///
[Description("NG包标记")]
public bool W_NgFlag { get; set; }
///
/// 补板工位允许进板
///
[Description("补板工位允许进板")]
public bool W_AllowIn { get; set; }
///
/// 读码数据解析完成
///
[Description("读码数据解析完成")]
public bool W_DataFinish { get; set; }
///
/// 齐套信息(998齐套,999异常出库)
///
[Description("齐套信息(998齐套,999异常出库)")]
public short W_KittingInfo { get; set; }
///
/// 分配放料库位号
///
[Description("分配放料库位号")]
public int W_Destination_In { get; set; }
///
/// 入库任务号
///
[Description("入库任务号")]
public short W_Inbound_TaskID { get; set; }
///
/// 出库任务号
///
[Description("出库任务号")]
public short W_Outbound_TaskID { get; set; }
///
/// 来料长度
///
[Description("来料长度")]
public short W_Length { get; set; }
///
/// 来料宽度
///
[Description("来料宽度")]
public short W_Width { get; set; }
///
/// 来料高度
///
[Description("来料高度")]
public short W_Height { get; set; }
///
/// 请求出库
///
[Description("请求出库")]
public bool W_ReqOut { get; set; }
///
/// 分配出库库位号
///
[Description("分配出库库位号")]
public int W_Destination_Out { get; set; }
///
/// 是否旋转
///
[Description("是否旋转")]
public bool W_IsRotate { get; set; }
///
/// 包件长
///
[Description("包件长")]
public short W_PackageLength { get; set; }
///
/// 包件宽
///
[Description("包件宽")]
public short W_PackageWidth { get; set; }
///
/// 纸箱高
///
[Description("纸箱高")]
public short W_CartonHeight { get; set; }
///
/// 纸箱宽
///
[Description("纸箱宽")]
public short W_CartonWidth { get; set; }
///
/// 放料X偏移
///
[Description("放料X偏移")]
public short W_X_Offset { get; set; }
///
/// 放料Y偏移
///
[Description("放料Y偏移")]
public short W_Y_Offset { get; set; }
///
/// 入库完成已确认
///
[Description("入库完成已确认")]
public bool W_InboundFinishConfirm { get; set; }
///
/// 出库完成已确认
///
[Description("出库完成已确认")]
public bool W_OutboundFinishConfirm { get; set; }
///
/// 码垛末板标志
///
[Description("码垛末板标志")]
public bool W_EndMark { get; set; }
///
/// 码垛首板标志
///
[Description("码垛首板标志")]
public bool W_FirstMark { get; set; }
///
/// 码垛任务号
///
[Description("码垛任务号")]
public short W_PalletizingTaskID { get; set; }
///
/// 码垛是否旋转
///
[Description("码垛是否旋转")]
public short W_Rotate { get; set; }
///
/// 码垛目标工位
///
[Description("码垛目标工位")]
public short W_PalletizingStation { get; set; }
///
/// 码垛位置坐标X
///
[Description("码垛位置坐标X")]
public short W_PalletizingPlaceX { get; set; }
///
/// 码垛位置坐标Y
///
[Description("码垛位置坐标Y")]
public short W_PalletizingPlaceY { get; set; }
///
/// 码垛位置坐标Z
///
[Description("码垛位置坐标Z")]
public short W_PalletizingPlaceZ { get; set; }
///
/// 码垛任务完成确认
///
[Description("码垛任务完成确认")]
public bool W_PalletizingTaskFinish { get; set; }
///
/// 模式(1:入库, 2:出库 3:强制出库)
///
[Description("模式(1:入库, 2:出库 3:强制出库)")]
public short W_Mode { get; set; }
///
/// 合包任务完成确认
///
[Description("合包任务完成确认")]
public bool W_SurroundTaskFinish { get; set; }
///
/// 合包任务号
///
[Description("合包任务号")]
public short W_SurroundTaskNo { get; set; }
///
/// 码垛首末板
///
[Description("码垛首末板")]
public short W_PalletizingBucketType { get; set; }
}
}