using System;
using System.Collections.Generic;
using System.Text;
namespace Model.ModelDto.DataDto
{
public class NoticeInfo
{
///
/// 出\入单号
///
public string Code { get; set; }
///
/// 上游系统出\入单号
///
public string OrderCode { get; set; }
public List models { get; set; }
}
public class NoticeDetailInfo
{
///
/// 出\入单号
///
public string Code { get; set; }
///
/// 上游系统出\入单号
///
public string OrderCode { get; set; }
///
/// 计划数量
///
public decimal Qty { get; set; }
///
/// 完成数量
///
public decimal CompleteQty { get; set; }
///
/// 物料编码
///
public string SkuNo { get; set; }
///
/// 物料名称
///
public string SkuName { get; set; }
///
/// 批次
///
public string LotNo { get; set; }
///
/// 规格
///
public string Standard { get; set; }
}
}