using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core.Attributes;
|
|
namespace WIDESEA_DTO.ERP
|
{
|
/// <summary>
|
/// 生管排程接收实体
|
/// </summary>
|
public class SGOutOrderDTO
|
{
|
/// <summary>
|
/// 主排程Id
|
/// </summary>
|
[PropertyValidate("主排程Id", NotNullAndEmpty = true)]
|
public int BoardMpsId { get; set; }
|
|
/// <summary>
|
/// 排程明细ID
|
/// </summary>
|
[PropertyValidate("排程明细ID", NotNullAndEmpty = true)]
|
public int BoardMpsDetailId { get; set; }
|
|
/// <summary>
|
/// 幅宽
|
/// </summary>
|
[PropertyValidate("幅宽", NotNullAndEmpty = true)]
|
public decimal Width { get; set; }
|
|
/// <summary>
|
/// 需求长度
|
/// </summary>
|
[PropertyValidate("需求长度", NotNullAndEmpty = true)]
|
public decimal XqLen { get; set; }
|
|
/// <summary>
|
/// 总用量
|
/// </summary>
|
[PropertyValidate("总用量", NotNullAndEmpty = true)]
|
public decimal TotalUsage { get; set; }
|
|
/// <summary>
|
/// 物料来源ID(上游)
|
/// </summary>
|
[PropertyValidate("物料ID", NotNullAndEmpty = true)]
|
public int MaterialId { get; set; }
|
|
/// <summary>
|
/// 物料编号
|
/// </summary>
|
[PropertyValidate("物料编号", NotNullAndEmpty = true)]
|
public string MaterialNo { get; set; }
|
|
/// <summary>
|
/// 采购长度
|
/// </summary>
|
[PropertyValidate("采购长度", NotNullAndEmpty = true)]
|
public decimal ProcurementLength { get; set; }
|
|
/// <summary>
|
/// 楞别
|
/// </summary>
|
[PropertyValidate("楞别", NotNullAndEmpty = true)]
|
public string BoardFluteNo { get; set; }
|
|
/// <summary>
|
/// 机台位置
|
/// </summary>
|
[PropertyValidate("机台位置", NotNullAndEmpty = true)]
|
public string MachineName { get; set; }
|
|
/// <summary>
|
/// 客户简称
|
/// </summary>
|
[PropertyValidate("客户简称", NotNullAndEmpty = true)]
|
public string ShortName { get; set; }
|
|
/// <summary>
|
/// 总长
|
/// </summary>
|
[PropertyValidate("总长", NotNullAndEmpty = true)]
|
public decimal TotalLenth { get; set; }
|
|
/// <summary>
|
/// 生产工单号(上游)
|
/// </summary>
|
[PropertyValidate("生产工单号", NotNullAndEmpty = true)]
|
public string OrderId { get; set; }
|
}
|
}
|