zs
2025-05-16 edca9fd026f88d4edad94b528694d95d62246c67
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.CommonDto
{
    /// <summary>
    /// 库存转移参数
    /// </summary>
    public class MoveStockInput
    {
        /// <summary>
        /// 任务号
        /// </summary>
        public string TaskNo { get; set; }
        /// <summary>
        /// 单据号
        /// </summary>
        public string OrderNo { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        public string MaterialName { get; set; }
 
        /// <summary>
        /// 容器编号
        /// </summary>
        public string? ContainerNo { get; set; }
 
        /// <summary>
        /// 物料编号
        /// </summary>
        public string MaterialNo { get; set; }
 
        /// <summary>
        /// 库存数量
        /// </summary>
        public int StockNumber { get; set; }
 
        /// <summary>
        /// 物料批次
        /// </summary>
        public string? MaterialBatch { get; set; }
 
        /// <summary>
        /// 机型/规格
        /// </summary>
        public string? MaterialModel { get; set; }
 
        /// <summary>
        /// 起始库位
        /// </summary>
        public string SourcePlace { get; set; }
 
        /// <summary>
        /// 目标库位
        /// </summary>
        public string ToPlace { get; set; }
    }
}