Tjiny
2025-05-29 d471478f1b3373a9001ab9ebc4eb7f52384a4ec3
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; }
}