TotalModel.cs
1.67 KB
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
using Hh.Mes.POJO.Entity;
using System;
using System.Collections.Generic;
using System.Text;
namespace Hh.Mes.POJO.ViewModel
{
public class TotalModel
{
/// <summary>
/// 套料头表
/// </summary>
public bus_cutplan_head cutplanHead { get; set; }
/// <summary>
/// 套料明细List
/// </summary>
public List<bus_cutplan_detail> planDetailList { get; set; } = new List<bus_cutplan_detail>();
/// <summary>
/// 利用率
/// </summary>
public string Percentage { get; set; }
}
public class TotalData
{
/// <summary>
/// 工单头表
/// </summary>
public List<bus_workOrder_head> workOrderheadList { get; set; } = new List<bus_workOrder_head>();
/// <summary>
/// 工单明细List
/// </summary>
public List<bus_workOrder_detail> workOrderDetailList { get; set; } = new List<bus_workOrder_detail>();
/// <summary>
/// 套料结果
/// </summary>
public List<TotalModel> totalModel { get; set; } = new List<TotalModel>();
/// <summary>
/// 未套料工单头表
/// </summary>
public List<bus_workOrder_head> notWorkOrderheadList { get; set; } = new List<bus_workOrder_head>();
/// <summary>
/// 未套料工单明细
/// </summary>
public List<bus_workOrder_detail> notWorkOrderDetailList { get; set; } = new List<bus_workOrder_detail>();
/// <summary>
/// 未使用库存
/// </summary>
public List<base_inventory> notInventoryList { get; set; }=new List<base_inventory>();
}
}