25 lines
565 B
C#
25 lines
565 B
C#
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; }
|
|
}
|
|
}
|