using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Model.ViewModels
{
///
/// 条码打印物料信息
///
public class PrintPlanInfoView
{
///
/// 订单编号
///
public string OrderCode { get; set; }
///
/// 产品编号
///
public string ProductCode { get; set; }
///
/// 订单数量
///
public int PlanAmount { get; set; } = 0;
///
/// 产品型号
///
public string ProductName { get; set; }
///
/// 内胆数量
///
public int LinerAmount { get; set; } = 0;
///
/// 箱体数量
///
public int BoxAmount { get; set; } = 0;
///
/// 完成量
///
public int CompleteAmount { get; set; } = 0;
///
/// 物料编码
///
public string MaterialCode { get; set; }
///
/// 物料名称
///
public string MaterialName { get; set; }
///
/// 物料数量
///
public int StandardAmount { get; set; } = 0;
///
/// 异常量
///
public int ErrorAmount { get; set; } = 0;
///
/// 内胆码已打量
///
public int PrintLinerAmount { get; set; } = 0;
///
/// 箱壳码已打量
///
public int PrintBoxAmount { get; set; } = 0;
///
/// 剩余数量
///
public int ResidueAmount { get; set; } = 0;
///
/// 打印名称
///
public string PrintName { get; set; } = string.Empty;
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
}
}