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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
using iWare.Wms.Core;
using iWare.Wms.Core.Service;
using System.ComponentModel.DataAnnotations;
 
namespace iWare.Wms.Application
{    
    
    /// <summary>
    /// 生产计划表查询参数
    /// </summary>
    public class ProductionPlanInfoSearch : PageInputBase
    {
        /// <summary>
        /// 计划类型(1:班组计划 2:月份计划)
        /// </summary>
        public virtual string PlanType { get; set; }
        
        /// <summary>
        /// 计划时间
        /// </summary>
        public virtual DateTime? PlanTime { get; set; }
        
        /// <summary>
        /// 班组类型(白班,晚班)
        /// </summary>
        public virtual string TeamType { get; set; }
        
        /// <summary>
        /// 计划生成数量
        /// </summary>
        public virtual int? PlanProductionNum { get; set; }
        
        /// <summary>
        /// 备注
        /// </summary>
        public virtual string Remarks { get; set; }
        
    }
 
    /// <summary>
    /// 生产计划表输入参数
    /// </summary>
    public class ProductionPlanInfoInput
    {
        /// <summary>
        /// 计划类型(1:班组计划 2:月份计划)
        /// </summary>
        public virtual string PlanType { get; set; }
        
        /// <summary>
        /// 计划时间
        /// </summary>
        public virtual DateTime PlanTime { get; set; }
        
        /// <summary>
        /// 班组类型(白班,晚班)
        /// </summary>
        public virtual string TeamType { get; set; }
        
        /// <summary>
        /// 计划生成数量
        /// </summary>
        public virtual int PlanProductionNum { get; set; }
        
        /// <summary>
        /// 备注
        /// </summary>
        public virtual string Remarks { get; set; }
        
    }
 
    public class AddProductionPlanInfoInput : ProductionPlanInfoInput
    {
    }
 
    public class DeleteProductionPlanInfoInput : BaseId
    {
    }
 
    public class UpdateProductionPlanInfoInput : ProductionPlanInfoInput
    {
        /// <summary>
        /// Id主键
        /// </summary>
        [Required(ErrorMessage = "Id主键不能为空")]
        public long Id { get; set; }
        
    }
 
    public class QueryeProductionPlanInfoInput : BaseId
    {
 
    }
}