namespace MES.Service.Dto.webApi; /// /// 出货计划出货接口主表DTO /// public class ErpShipmentPlanDeliveryDto { /// /// 接口类型(2:新增/更新, 3:修改, 4:删除) /// public string? Type { get; set; } /// /// ERP主表ID /// public string? ErpHeadId { get; set; } /// /// 单据类型 /// public string? BillType { get; set; } /// /// 单号 /// public string? BillNo { get; set; } /// /// 客户 /// public string? Customer { get; set; } /// /// 日期(格式:yyyy-MM-dd HH:mm:ss) /// public string? FDate { get; set; } /// /// 接口状态 /// public string? InterfaceStatus { get; set; } /// /// 业务员 /// public string? Salesperson { get; set; } /// /// 部门 /// public string? Department { get; set; } /// /// 来源单据类别 /// public string? SourceDocCategory { get; set; } /// /// 来源单据 /// public string? SourceDocument { get; set; } /// /// 状态 /// public string? Status { get; set; } /// /// 创建人 /// public string? CreatedBy { get; set; } /// /// 创建时间(格式:yyyy-MM-dd HH:mm:ss) /// public string? CreatedDate { get; set; } /// /// 审核人 /// public string? ApprovedBy { get; set; } /// /// 审核日期(格式:yyyy-MM-dd HH:mm:ss) /// public string? ApprovedDate { get; set; } /// /// 表头备注 /// public string? HeaderNote { get; set; } /// /// 备注 /// public string? Remark { get; set; } /// /// ASN号 /// public string? AsnNo { get; set; } /// /// 项目 /// public string? Project { get; set; } /// /// 客户采购订单 /// public string? CustomerPo { get; set; } /// /// 出货原则 /// public string? ShippingPolicy { get; set; } /// /// 出货方式 /// public string? ShippingMethod { get; set; } /// /// 需求分类 /// public string? DemandCategory { get; set; } /// /// 装运港 /// public string? ShippingPort { get; set; } /// /// 目的港 /// public string? DestinationPort { get; set; } }