wbc
2 天以前 ef5bf910f7c42000fee6eeca78d1c0281165d113
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace MES.Service.Dto.webApi
{
    public class ErpDETAIL
    {
        public string ? F_UNW_Text_xsddh { get; set; }
        public string? FOrderNumber { get; set; }
        //public string? LineNumber { get; set; }
        public string? FOrderType { get; set; }
        /*ProductCode   FMaterialId*/
        public string ?  FMaterialId { get; set;}
        public string ? FMaterialName { get; set;}
        public string ? FMaterialModel { get; set;}
        public string? FWarehouse { get; set; }
        public string ? FMinPlanDeliveryDate { get; set;}
        public decimal? FQty { get; set;}
        public string ? FUnitID { get; set;}
        public decimal? FGiftQuantity { get; set; }
        public decimal? FDeliveredGiftQuantity { get; set; }
        public decimal? FUnsettledBorrowedQty { get; set; }
        //public string? FConfigurationMode { get; set; }
        public string? FConfigurationPlan { get; set; }
        public decimal? FDeliCommitQty { get; set;}
 
        public string FIsClosed { get; set; }
        public string ? FEntryNote { get; set;}
        public string? FDeviceModel { get; set; }
 
        public string? FCustomerProductId { get; set; }
        public string? FCustomerProductName { get; set; }
        public string? FCustomerSpec { get; set; }
        public string? FCustomerOrderId { get; set; }
 
 
 
 
    }
}