using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace WCS.Service.Entity
{
///
/// 获取出库任务请求实体
///
public class I_WCS_GetOutTaskRequest
{
///
/// 出库位置
///
[Required(ErrorMessage = "{0} 不可为空")]
public string OutEndPostion { get; set; }
///
/// 出库类型(0.无效参数;1.物料出库;2.空托盘出库;3.空铁架出库;)
///
[Required(ErrorMessage = "{0} 不可为空")]
public int OutType { get; set; }
///
/// 仓库编码
///
[Required(ErrorMessage = "{0} 不可为空")]
public string WareHouseId { get; set; }
///
/// 备用
///
public string Memo1 { get; set; }
///
/// 备用 空托盘类型0,1,2,3
///
public string Memo2 { get; set; }
///
/// OutId
///
public string OutId { get; set; }
///
/// 熟化时间(小时:10,16)
///
public decimal TASK_MatureDate { get; set; }
///
/// 熟化温度(小数)
///
public decimal TASK_MatureTemperat { get; set; }
}
}