liuying
2025-09-24 6efa5f6ca7536a37e3af3592bb42db63bcb8371d
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
using Microsoft.CodeAnalysis;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWare.Wms.Application.Service.AccessInterface.Dto
{
    /// <summary>
    /// 工件信息输出
    /// </summary>
    public class AccessWorPieceInfoOutput
    {
        /// <summary>
        /// 工件号
        /// </summary>
        public string WorkPieceID { get; set; }
        /// <summary>
        /// 当前工序
        /// </summary>
        public string WorkingProcedureCurrent { get; set; }
    }
 
    /// <summary>
    /// 当前班次/月份的  实际产量和计划产量
    /// </summary>
    public class CurrentProduceInfo
    {
        /// <summary>
        /// 当前时间
        /// </summary>
        public DateTime CurrentTime { get; set; }
        /// <summary>
        /// 当前班次
        /// </summary>
        public string CurrentTeamName { get; set; }
        /// <summary>
        /// 当前班长
        /// </summary>
        public string CurrentTeamLeader { get; set; }
        /// <summary>
        /// 当前安全生产天数
        /// </summary>
        public string CurrentSafeProductionDay { get; set; }
 
        /// <summary>
        /// 当前班组实际生产数量
        /// </summary>
        public int CurrentShiftProduceNum { get; set; }
        /// <summary>
        /// 当前班组计划生产数量
        /// </summary>
        public int CurrentShiftPlanNum { get; set; }
        /// <summary>
        /// 当前月实际生产数量
        /// </summary>
        public int CurrentMonthProduceNum { get; set; }
        /// <summary>
        /// 当前月计划生产数量
        /// </summary>
        public int CurrentMonthPlanNum { get; set; }
    }
    /// <summary>
    /// 获取当前年份所在的12个月生产完成情况
    /// </summary>
    public class ProduceCompletionStatus
    {
        /// <summary>
        /// 月份(1-12月)
        /// </summary>
        public string Month { get; set; }
        /// <summary>
        /// 计划完成率
        /// </summary>
        public double PlanCompletionRate { get; set; }
        /// <summary>
        /// 计划完成数量
        /// </summary>
        public int PlanCompletionNum { get; set; }
        /// <summary>
        /// 实际完成数量
        /// </summary>
        public int CompletionNum { get; set; }
    }
    public class QualityDataDisplay
    {
        /// <summary>
        /// 质量数据的类型
        /// </summary>
        public string QualityType { get; set; }
        public List<QualityData> list=new List<QualityData>();
    }
    public class QualityData
    {
        /// <summary>
        /// 工件号
        /// </summary>
        public string WorkPieceID { get; set; }
        /// <summary>
        /// 质量数据
        /// </summary>
        public double QualityDataVaule { get; set; }
    }
    public class ProductionInfo
    {
        /// <summary>
        /// 日期
        /// </summary>
        public string Day { get; set; }
        /// <summary>
        /// 质量数据
        /// </summary>
        public double ProductionNum { get; set; }
    }
}