You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
C#
46 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Aucma.Core.DoorFoam.Models
|
|
{
|
|
public class MaterialComplateInfo
|
|
{
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
public int No { get; set; }
|
|
/// <summary>
|
|
/// 计划编号
|
|
/// </summary>
|
|
public string? ProductPlanCode { get; set; }
|
|
/// <summary>
|
|
/// 物料条码
|
|
/// </summary>
|
|
public string? MaterialBarCode { get; set; }
|
|
/// <summary>
|
|
/// 物料编号
|
|
/// </summary>
|
|
public string? MaterialCode { get; set; }
|
|
/// <summary>
|
|
/// 物料名称
|
|
/// </summary>
|
|
public string? MaterialName { get; set; }
|
|
/// <summary>
|
|
/// 计划数量
|
|
/// </summary>
|
|
public int PlanAmount { get; set; }
|
|
/// <summary>
|
|
/// 完成数量
|
|
/// </summary>
|
|
public int CompleteAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 入库时间
|
|
/// </summary>
|
|
public DateTime EnterWarehouseTime { get; set; }
|
|
}
|
|
}
|