Tjiny
2025-06-24 6b9e8c7ff2eef9b69e37ee383e243497e68d1f3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
namespace HH.WCS.Mobox3.RiDong.dto;
 
/// <summary>
/// 货品信息
/// </summary>
public class MoBoxInputDetailDto
{
    /// <summary>
    /// 仓库编号
    /// </summary>
    public string wh_code { get; set; }
 
    /// <summary>
    /// 库区编码
    /// </summary>
    public string area_code { get; set; }
 
    /// <summary>
    /// 货品编码
    /// </summary>
    public string item_code { get; set; }
 
    /// <summary>
    /// 货品名称
    /// </summary>
    public string item_name { get; set; }
 
    /// <summary>
    /// 数量
    /// </summary>
    public int qty { get; set; }
}