schangxiang@126.com
2024-06-11 bc42866b302006865a605da028a447592b5dbda9
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
using iWare.Wms.Core.Util.LowCode.Dto;
using System;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 生产计划表输出参数
    /// </summary>
    public class ProductionPlanInfoDto
    {
        /// <summary>
        /// 计划类型(1:班组计划 2:月份计划)
        /// </summary>
        public string PlanType { get; set; }
        
        /// <summary>
        /// 计划时间
        /// </summary>
        public DateTime PlanTime { get; set; }
        
        /// <summary>
        /// 班组类型(白班,晚班)
        /// </summary>
        public string TeamType { get; set; }
        
        /// <summary>
        /// 计划生成数量
        /// </summary>
        public int PlanProductionNum { get; set; }
        
        /// <summary>
        /// 备注
        /// </summary>
        public string Remarks { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
        
    }
}