using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core.Attributes;
|
|
namespace WIDESEA_DTO.MES
|
{
|
/// <summary>
|
/// MES领料自动叫料接收实体
|
/// </summary>
|
[ModelValidate]
|
public class MESManualIssueDTO
|
{
|
/// <summary>
|
/// 出库来源明细ID
|
/// </summary>
|
[PropertyValidate("出库来源明细ID", NotNullAndEmpty = true)]
|
public int OutDetailId { get; set; }
|
|
/// <summary>
|
/// 呼叫Id
|
/// </summary>
|
[PropertyValidate("呼叫Id", NotNullAndEmpty = true)]
|
public string IssueId { get; set; }
|
|
/// <summary>
|
/// 周转位置编号
|
/// </summary>
|
[PropertyValidate("周转位置编号", NotNullAndEmpty = true)]
|
public string PointCode { get; set; }
|
}
|
}
|