王 垚
2022-09-29 fef143d04fc39ee5fce167fe22d727da1d042c5d
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Demo.Model.Model
{
    /// <summary>
    /// 日计划下推生产领料单
    /// </summary>
    public class Prd_DayPlanPushPickMatrl
    {
        /// <summary>
        /// 日计划工单FID
        /// </summary>
        public long FID { get; set; }
        /// <summary>
        /// 日计划明细FEntryID
        /// </summary>
        public long FEntryID { get; set; }
        public DateTime FDATE { get; set; }
 
        /// <summary>
        /// 生产用料清单单号
        /// </summary>
        public string FBillNo { get; set; }
        /// <summary>
        /// 生产用料清单FID
        /// </summary>
        public string FPPBOMFID { get; set; }
        public string FPPBOMFENTRYID { get; set; }
        public string FSEQ { get; set; }
        /// <summary>
        /// 生产订单号
        /// </summary>
        public string FMOBILLNO { get; set; }
        public string FMOID { get; set; }
        public string FMOENTRYID { get; set; }
        public string FPRDORGID { get; set; }
        public string FOrgNumber { get; set; }
        public string FMATERIALID { get; set; }
        public string FNUMBER { get; set; }
        public string FParentMaterialNumber { get; set; }
        /// <summary>
        /// 仓库仓位 纬度字段
        /// </summary>
        public string FFLEXID { get; set; }
        public string FPlanCount { get; set; }
        public string FBASEQTY { get; set; }
        public string FBaseUnitId { get; set; }
        public string FBaseUnitNumber { get; set; }
        public string FStockId { get; set; }
        public string FStockNumber { get; set; }
        /// <summary>
        /// 仓位ID
        /// </summary>
        public string FStockLocId { get; set; }
        public string FLot { get; set; }
        public string FLOTNUMBER { get; set; }
        public string FStockStatusId { get; set; }
        public string FStockStatusNumber { get; set; }
        public string FOwnerTypeId { get; set; }
        public string FOwnerId { get; set; }
        public string FOwnerTypeNumber { get; set; }
        public string FKeeperTypeId { get; set; }
        public string FKeeperId { get; set; }
        public string FKeeperTypeNumber { get; set; }
        public decimal FSumBASEQTY { get; set; }
        public decimal FACTBASEQTY { get; set; }
 
        public string FREQSRC { get; set; }
        public string FSALEORDERID { get; set; }
        public string FSALEORDERNO { get; set; }
        public string FSALEORDERENTRYID { get; set; }
        public string FSALEORDERENTRYSEQ { get; set; }
        public string FDAYPLANBILLNO { get; set; }
        public string FDayPlanFseq { get; set; }
        public string FDayPlanFentryId { get; set; }
        public string FDayPlanFid { get; set; }
        /// <summary>
        /// 流传单号
        /// </summary>
        public string FSpreadBillNo { get; set; } 
 
        
    }
 
}