入库功能

This commit is contained in:
qianhao.xu
2024-03-15 17:55:50 +08:00
parent 9b9aedfa37
commit 2099805a6b
11 changed files with 331 additions and 95 deletions

View File

@@ -0,0 +1,46 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Model.MES.wms.Dto
{
public class ResultionPackageCodeDto
{
/// <summary>
/// 原始码
/// </summary>
public string originalCode { get; set; }
/// <summary>
/// 批次号
/// </summary>
public string PatchCode { get; set; }
/// <summary>
/// 零件号
/// </summary>
public string PartNumner { get; set; }
/// <summary>
/// 工单号
/// </summary>
public string WorkoderID { get; set; }
/// <summary>
/// 数量
/// </summary>
public string Quantity { get; set; }
/// <summary>
/// 生产时间
/// </summary>
public string ProductionTime { get; set; }
/// <summary>
/// 产品描述
/// </summary>
public string ProductionDescribe { get; set; }
}
}