20 lines
407 B
C#
20 lines
407 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
|
|
{
|
|
/// <summary>
|
|
/// 扫码入库输入参数
|
|
/// </summary>
|
|
public class SacnBarCodeInStockInput
|
|
{
|
|
/// <summary>
|
|
/// 入库单ID
|
|
/// </summary>
|
|
public string bill_id { get; set; }
|
|
}
|
|
}
|