using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.request
{
public class CreateStockInWcsTaskRequest
{
///
/// 容器条码
///
public string ContGrpBarCode { get; set; }
///
/// 主盘主表ID
///
public long ContGrpId { get; set; }
///
/// 仓库编码
///
public string WarehouseCode { get; set; }
public decimal Qty { get; set; }
///
/// 单据号
///
public string DocCode { get; set; }
public long DocId { get; set; }
///
/// 设备编号
///
public string EquCode { get; set; }
///
/// 业务类型
///
public string BusType { get; set; }
public int Floor { get; set; }
public string ProLine { get; set; }
public string MatCode { get; set; }
public string MaterialCode { get; set; }
///
/// 是否越库(0入立库,1直接搬运至二楼)
///
public short IsDirMove { get; set; } = 0;
public string InvBarCode { get; set; }
public string Grade { get; set; }
public bool IsSurplus { get; set; }
public bool IsRework { get; set; }
public bool IsFast { get; set; }
///
/// 请求编号
///
public string ReqCode { get; set; }
}
}