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
namespace MES.Service.Dto.webApi
{
    public class ErpSalesOrderDetail
    {
        public string? Id { get; set; }
        public string? Type { get; set; }
        public string? FMaterialId { get; set; }
        public string? FUnitID { get; set; }
        public string? FQty { get; set; }
        public string? FPriceUnitId { get; set; }
        public string? FPriceUnitQty { get; set; }
        public string? FDeliveryDate { get; set; }
        public string? FIsFree { get; set; }
        public string? FOwnerTypeId { get; set; }
        public string? FOwnerId { get; set; }
        public string? FEntryNote { get; set; }
        public string? FMtoNo { get; set; }
        public string? FLot { get; set; }
        public string? FDeliveryMaxQty { get; set; }
        public string? FDeliveryMinQty { get; set; }
        public string? FOutLmtUnitID { get; set; }
        public string? FMrpCloseStatus { get; set; }
        public string? FMrpTerminateStatus { get; set; }
        public string? FTerminateDate { get; set; }
        public string? FTerminaterId { get; set; }
        public string? FSrcType { get; set; }
        public string? FSrcBillNo { get; set; }
        public string? FDeliQty { get; set; }
        public string? FStockOutQty { get; set; }
        public string? FBaseRetNoticeQty { get; set; }
        public string? FBaseReturnQty { get; set; }
        public string? FBaseRemainOutQty { get; set; }
        public string? FBASEARQTY { get; set; }
        public string? ErpID { get; set; }
        public string? EHID { get; set; }
    }
}