11
啊鑫
4 天以前 646ac6f3e1e77d0481e46ea15a6eb6db4ecba065
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
namespace MES.Service.Dto.webApi;
 
public class ErpSalesDeliveryDetailDto
{
    public string? Type { get; set; }
    public string? FMaterialId { 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? FStockUnitID { get; set; }  // 库存单位
    public decimal? FStockQty { 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
 
    public string? FXSHTH { get; set; }  // 销售订单号
    public string? F_ZJXF_TEXT_QTR_LEE { get; set; }  // 客户订单号
    public string? FXSHTBH { get; set; }  // 销售合同编号
    public string? F_KHWLMC { get; set; }  // 客户物料名称
    public string? F_KHWLBM { get; set; }  // 客户物料编码
 
}