wbc
2025-02-14 579b5c04843d65748f3c60816ee8ec376c178d43
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
namespace MES.Service.Dto.webApi;
 
public class ErpSalesDeliveryDetailDto
{
    public string? Type { get; set; }
    public string? F_UNW_Text_xsddh { get; set; }  // 销售订单号
    public string? FMaterialId { get; set; }  // 物料编码
    //public string? FMaterialName { get; set; }  // 物料名称
    //public string? FMaterialModel { get; set; }  // 规格型号
    public string? FUnitID { get; set; }  // 销售单位
    public string? FQty { get; set; }  // 销售数量
    public string? FIsFree { get; set; }  // 是否赠品
    public string? FDeliverydate { get; set; }  // 退货日期
    public string? FStockId { get; set; }  // 仓库
    public string? FMtoNo { get; set; }  // 计划跟踪号
    public string? FLot { get; set; }  // 批号
    //public string? FEntryDescription { get; set; }  // 备注
    //public string? FRmType { get; set; }  // 退货类型
    public string? F_UNW_Base_GDY { get; set; }  // 跟单员
    public string? FStockUnitID { get; set; }  // 库存单位
    public decimal? FStockQty { get; set; }  // 库存数量
   // public string? FMaterialType { get; set; }  // 物料类别
    public string? FOwnerTypeID { get; set; }  // 货主类型
    public string? FOwnerId { get; set; }  // 货主
    public string? FSrcType { get; set; }  // 源单类型
    public string? FSrcBillNo { get; set; }  // 源单编号
    public string? FOrderNo { get; set; }  // 订单单号
 
    public decimal? FPriceUnitQty { get; set; }  // 计价数量
    public string? FOwnerIdHead { get; set; }  // 货主
 
    public string? FPlanDeliveryDate { get; set; }  //计划发货日期
    public string? FOutLmtUnit { get; set; }  // 超发控制单位
    public decimal? FOutMaxQty { get; set; }  // 出库上限
    public decimal? FOutMinQty { get; set; }  // 出库下限
    public string? FDeliveryLoc { get; set; }  // 交货地点
    public string? FDeliveryLAddress { get; set; }  // 交货地址
    public string? FTerminationStatus { get; set; }  // 终止状态
    public string? FTerminateDate { get; set; }  // 业务终止日期
    public decimal? FSumOutQty { get; set; }  // 累计出库数量
    public decimal? FRemainOutQty { get; set; }  // 未出库数量
 
    public string? ErpID { get; set; }  // ERPID
    public string? EHID { get; set; }  // ERP头ID
 
}