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
namespace MES.Service.Dto.webApi
{
    public class ErpSalesDeliveryNotice
    {
        public string? Id { get; set; }
        public string? type { get; set; }
        public string? erpID { get; set; }
        public string? fBillTypeID { get; set; }
        public string? fBillNo { get; set; }
        public string? fDate { get; set; }
        public string? fSettleCurrld { get; set; }
        public string? fSaleDeptId { get; set; }
        public string? fCustomerID { get; set; }
        public string? fHeadDeliveryWay { get; set; }
        public string? fHeadLocId { get; set; }
        public string? fCarrierID { get; set; }
        public string? fCarriageNO { get; set; }
        public string? fDeliveryDeptID { get; set; }
        public string? fStockerGroupId { get; set; }
        public string? fStockerId { get; set; }
        public string? fSaleGroupId { get; set; }
        public string? fSalesManId { get; set; }
        public string? fReceiveCusId { get; set; }
        public string? fReceiveCusContact { get; set; }
        public string? fReceiveAddress { get; set; }
        public string? fLinkMan { get; set; }
        public string? fLinkPhone { get; set; }
        public string? fSettleID { get; set; }
        public string? fPayerID { get; set; }
        public string? fCreatorId { get; set; }
        public string? fCreateDate { get; set; }
        public string? fModifierId { get; set; }
        public string? fModifyDate { get; set; }
        public string? fApproverId { get; set; }
        public string? fApproveDate { get; set; }
        public string? fCloserId { get; set; }
        public string? fCloseReason { get; set; }
        public string? fBillCloseStatus { get; set; }
        public string? fCancelStatus { get; set; }
        public string? fCancellerId { get; set; }
        public string? fCancelDate { get; set; }
        public string? fDocumentStatus { get; set; }
    }
}