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
namespace MES.Service.Dto.webApi;
 
public class ErpSalesOrderDto
{
    public string? Type { get; set; }
    public string? ErpID { get; set; } // ERPID
    public string? FBillNo { get; set; } // 单据编号
    public string? FBillTypeID { get; set; } // 单据类型
    public string? FDocumentStatus { get; set; } // 单据状态
    public string? FDate { get; set; } // 单据日期
    public string? FBusinessType { get; set; } // 业务类型
    public string? FHeadDeliveryWay { get; set; } // 交货方式
    public string? FHEADLOCID { get; set; } // 交货地点
    public string? F_UNW_Text_KHDD { get; set; } // 客户订单
    public string? F_UNW_Date_KHXQ { get; set; } // 客户需求交期
    public string? F_UNW_BaseProperty_KHDJ { get; set; } // 客户等级
    public string? FCustId { get; set; } // 客户
    public string? F_UNW_LargeText_TBKHBZ { get; set; } // 淘宝客户备注
    public string? FCloseStatus { get; set; } // 关闭状态
    public string? FSaleDeptId { get; set; } // 销售部门
    public string? FSalerId { get; set; } // 销售员
    public string? FChangeReason { get; set; } // 变更原因
    public string? FNote { get; set; } // 备注
    public string? F_UNW_Remarks_KHJHDD { get; set; } // 客户交货地点
    public string? FSettleId { get; set; } // 结算方
    public string? FApproverId { get; set; } // 审核人
    public string? FLinkMan { get; set; } // 收货人姓名
    public string? FChargeId { get; set; } // 付款方
    public string? FLinkPhone { get; set; } // 联系电话
    public string? FCreatorId { get; set; } // 创建人
    public string? FCreateDate { get; set; } // 创建日期
    public string? FModifierId { get; set; } // 最后修改人
    public string? FModifyDate { get; set; } // 最后修改日期
    public string? FApproveDate { get; set; } // 审核日期
    public string? FCloserId { get; set; } // 关闭人
    public string? FCloseDate { get; set; } // 关闭日期
    public string? FChangeDate { get; set; } // 变更日期
    public string? FCancelStatus { get; set; } // 作废状态
    public string? FCancellerId { get; set; } // 作废人
    public string? FVersionNo { get; set; } // 版本号
    public string? FChangerId { get; set; } // 变更人
    public string? FEntryNote { get; set; } // 备注
}