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 { /// /// 不合格品移库 /// public class UnqualifyTransferInput { /// /// 载具编号 /// public string carry_code { get; set; } /// /// 终点库位 /// public string end_location_code { get; set; } } }