王 垚
2022-09-05 89e9e87324656eb6ff2bc70c731ee676eeac9111
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Demo.Model.Model.PODemandPlan
{
    //日计划展开数据明细
    public class DayPlanPpbom
    {
 
        /// <summary>
        /// 日计划工单主ID
        /// </summary>
        public long FID { get; set; }
        /// <summary>
        /// 生产订单号
        /// </summary>
        public string FBILLNO { get; set; }
        /// <summary>
        /// 日计划明细日期
        /// </summary>
        public DateTime FHMASTERDATE { get; set; }
        /// <summary>
        /// 日计划明细数量
        /// </summary>
        public decimal FHQTY { get; set; }
        /// <summary>
        /// 齐套数
        /// </summary>
        public decimal FCOMPLETECOUNT { get; set; }
        /// <summary>
        /// 生产订单工单ID
        /// </summary>
        public long FPRDMOMAINID { get; set; }
        /// <summary>
        /// 子表ID
        /// </summary>
        public int FENTRYID { get; set; }
        /// <summary>
        /// 单位用料
        /// </summary>
        public decimal FNeedQty { get; set; }
        /// <summary>
        /// 物料ID
        /// </summary>
        public string FMATERIALID { get; set; }
        /// <summary>
        /// 提前天数
        /// </summary>
        public int FFIXLEADTIME { get; set; }
        /// <summary>
        ///最大包装
        /// </summary>
        public decimal FMAXPOQTY { get; set; }
        /// <summary>
        /// 最小包装量
        /// </summary>
        public decimal FMINPOQTY { get; set; }
        /// <summary>
        /// 物料编码
        /// </summary>
        public string FNumber { get; set; }
        /// <summary>
        /// 实际需求
        /// </summary>
        public decimal NeedQty { get; set; }
 
        /// <summary>
        /// 库存组织
        /// </summary>
        public long FStockOrgId { get; set; }
        /// <summary>
        /// jit物料分类
        /// </summary>
        public string FJITmaterialGroup { get; set; }
        /// <summary>
        /// JIT物料需求供货周期
        /// </summary>
        public string FJITMaterielDemand { get; set; }
        /// <summary>
        /// JIT安全库存
        /// </summary>
        public string FJITSafeStock { get; set; }
 
        /// <summary>
        /// 物料属性
        /// </summary>
        public string FErpClsID { get; set; }
        /// <summary>
        /// 需求单号(销售订单号)
        /// </summary>
        public string FXQD { get; set; }
 
    }
}