天益四厂四楼不合格品移库

This commit is contained in:
2024-11-13 09:18:29 +08:00
parent 7397a0286b
commit 841d00c7c8
2 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Org.BouncyCastle.Bcpg.OpenPgp;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
/// <summary>
/// 不合格品移库
/// </summary>
public class UnqualifyTransferInput
{
/// <summary>
/// 载具编号
/// </summary>
public string carry_code { get; set; }
/// <summary>
/// 终点库位
/// </summary>
public string end_location_code { get; set; }
}
}