baotian
2024-06-04 b959135a1139fb66646523d92e5bd20c5910f283
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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWare.Wms.Application
{
    public class LocationViewInput
    {
    }
 
    /// <summary>
    /// 获取库位对应的排
    /// </summary>
    public class GetPalceRownoInput
    {
        /// <summary>
        /// 库区ID
        /// </summary>
        [Required(ErrorMessage = "库区ID不能为空")]
        public long Areaid { get; set; }
    }
    /// <summary>
    /// 获取库位列表
    /// </summary>
    public class GetPalceListInput
    {
        /// <summary>
        /// 库区ID
        /// </summary>
        [Required(ErrorMessage = "库区ID不能为空")]
        public long Areaid { get; set; }
 
        /// <summary>
        /// 排
        /// </summary>
        [Required(ErrorMessage = "库区排不能为空")]
        public int Rowno { get; set; }
    }
    /// <summary>
    /// 获取库位对应的信息
    /// </summary>
    public class GetMaterialDetailInput
    {
        /// <summary>
        /// 库位ID
        /// </summary>
        [Required(ErrorMessage = "库位ID不能为空")]
        public long ID { get; set; }
    }
}