From fbb0bc175c8788f2f6ce4202d2630b01506bff80 Mon Sep 17 00:00:00 2001 From: sjz <1240968267@qq.com> Date: 星期五, 13 六月 2025 11:40:36 +0800 Subject: [PATCH] 发货通知单新增客户编码和客户名称。生产订单添加含税单价 --- MES.Service/Modes/SalesDeliveryNotice.cs | 76 +++++++++++++++++++------------------- 1 files changed, 38 insertions(+), 38 deletions(-) diff --git a/MES.Service/Modes/SalesDeliveryNotice.cs b/MES.Service/Modes/SalesDeliveryNotice.cs index 7027191..0146a9a 100644 --- a/MES.Service/Modes/SalesDeliveryNotice.cs +++ b/MES.Service/Modes/SalesDeliveryNotice.cs @@ -13,18 +13,18 @@ /// <summary> /// ///</summary> - [SugarColumn(ColumnName="ID", OracleSequenceName = "SEQ_sales", IsPrimaryKey = true)] + [SugarColumn(ColumnName="ID", OracleSequenceName = "SEQ_SALES", IsPrimaryKey = true)] public decimal? Id { get; set; } /// <summary> /// 鍗曟嵁绫诲瀷 ///</summary> [SugarColumn(ColumnName="BILL_TYPE" )] - public string BillType { get; set; } + public string? BillType { get; set; } /// <summary> /// 鍗曟嵁缂栧彿 ///</summary> [SugarColumn(ColumnName="BILL_NO" )] - public string BillNo { get; set; } + public string? BillNo { get; set; } /// <summary> /// 鏃ユ湡 ///</summary> @@ -34,127 +34,127 @@ /// 缁撶畻甯佸埆 ///</summary> [SugarColumn(ColumnName="CURRENCY" )] - public string Currency { get; set; } + public string? Currency { get; set; } /// <summary> /// 閿�鍞粍缁� ///</summary> [SugarColumn(ColumnName="SALES_ORG" )] - public string SalesOrg { get; set; } + public string? SalesOrg { get; set; } /// <summary> /// 閿�鍞儴闂� ///</summary> [SugarColumn(ColumnName="SALES_DEPT" )] - public string SalesDept { get; set; } + public string? SalesDept { get; set; } /// <summary> /// 瀹㈡埛璁㈠崟 ///</summary> [SugarColumn(ColumnName="CUSTOMER_ORDER_NO" )] - public string CustomerOrderNo { get; set; } + public string? CustomerOrderNo { get; set; } /// <summary> /// 瀹㈡埛 ///</summary> [SugarColumn(ColumnName="CUSTOMER" )] - public string Customer { get; set; } + public string? Customer { get; set; } /// <summary> /// 娣樺疂瀹㈡埛澶囨敞 ///</summary> [SugarColumn(ColumnName="TAOBAO_REMARK" )] - public string TaobaoRemark { get; set; } + public string? TaobaoRemark { get; set; } /// <summary> /// 浜よ揣鏂瑰紡 ///</summary> [SugarColumn(ColumnName="DELIVERY_METHOD" )] - public string DeliveryMethod { get; set; } + public string? DeliveryMethod { get; set; } /// <summary> /// 浜よ揣鍦扮偣 ///</summary> [SugarColumn(ColumnName="DELIVERY_LOCATION" )] - public string DeliveryLocation { get; set; } + public string? DeliveryLocation { get; set; } /// <summary> /// 鎵胯繍鍟� ///</summary> [SugarColumn(ColumnName="CARRIER" )] - public string Carrier { get; set; } + public string? Carrier { get; set; } /// <summary> /// 杩愯緭鍗曞彿 ///</summary> [SugarColumn(ColumnName="TRANSPORT_NO" )] - public string TransportNo { get; set; } + public string? TransportNo { get; set; } /// <summary> /// 鍗曟嵁鐘舵�� ///</summary> [SugarColumn(ColumnName="BILL_NO_TYPE" )] - public string BillNoType { get; set; } + public string? BillNoType { get; set; } /// <summary> /// 鍙戣揣缁勭粐 ///</summary> [SugarColumn(ColumnName="DELIVERY_ORG" )] - public string DeliveryOrg { get; set; } + public string? DeliveryOrg { get; set; } /// <summary> /// 鍙戣揣閮ㄩ棬 ///</summary> [SugarColumn(ColumnName="DELIVERY_DEPT" )] - public string DeliveryDept { get; set; } + public string? DeliveryDept { get; set; } /// <summary> /// 搴撳瓨缁� ///</summary> [SugarColumn(ColumnName="INVENTORY_GROUP" )] - public string InventoryGroup { get; set; } + public string? InventoryGroup { get; set; } /// <summary> /// 浠撶鍛� ///</summary> [SugarColumn(ColumnName="WAREHOUSE_MANAGER" )] - public string WarehouseManager { get; set; } + public string? WarehouseManager { get; set; } /// <summary> /// 閿�鍞粍 ///</summary> [SugarColumn(ColumnName="SALES_GROUP" )] - public string SalesGroup { get; set; } + public string? SalesGroup { get; set; } /// <summary> /// 閿�鍞憳 ///</summary> [SugarColumn(ColumnName="SALES_PERSON" )] - public string SalesPerson { get; set; } + public string? SalesPerson { get; set; } /// <summary> /// 鏀惰揣鏂� ///</summary> [SugarColumn(ColumnName="RECEIVER" )] - public string Receiver { get; set; } + public string? Receiver { get; set; } /// <summary> /// 鏀惰揣鏂硅仈绯讳汉 ///</summary> [SugarColumn(ColumnName="RECEIVER_CONTACT" )] - public string ReceiverContact { get; set; } + public string? ReceiverContact { get; set; } /// <summary> /// 鏀惰揣鏂瑰湴鍧� ///</summary> [SugarColumn(ColumnName="RECEIVER_ADDRESS" )] - public string ReceiverAddress { get; set; } + public string? ReceiverAddress { get; set; } /// <summary> /// 鏀惰揣鏂瑰鍚� ///</summary> [SugarColumn(ColumnName="RECEIVER_NAME" )] - public string ReceiverName { get; set; } + public string? ReceiverName { get; set; } /// <summary> /// 鑱旂郴鐢佃瘽 ///</summary> [SugarColumn(ColumnName="LINK_PHONE" )] - public string LinkPhone { get; set; } + public string? LinkPhone { get; set; } /// <summary> /// 缁撶畻鏂� ///</summary> [SugarColumn(ColumnName="SETTLE_PARTY" )] - public string SettleParty { get; set; } + public string? SettleParty { get; set; } /// <summary> /// 浠樻鏂� ///</summary> [SugarColumn(ColumnName="PAYER_PARTY" )] - public string PayerParty { get; set; } + public string? PayerParty { get; set; } /// <summary> /// 鍒涘缓浜� ///</summary> [SugarColumn(ColumnName="CREATED_BY" )] - public string CreatedBy { get; set; } + public string? CreatedBy { get; set; } /// <summary> /// 鍒涘缓鏃堕棿 ///</summary> @@ -164,7 +164,7 @@ /// 淇敼浜� ///</summary> [SugarColumn(ColumnName="MODIFIED_BY" )] - public string ModifiedBy { get; set; } + public string? ModifiedBy { get; set; } /// <summary> /// 淇敼鏃堕棿 ///</summary> @@ -174,12 +174,12 @@ /// 鍏抽棴浜� ///</summary> [SugarColumn(ColumnName="CLOSED_BY" )] - public string ClosedBy { get; set; } + public string? ClosedBy { get; set; } /// <summary> /// 鍏抽棴鍘熷洜 ///</summary> [SugarColumn(ColumnName="CLOSE_REASON" )] - public string CloseReason { get; set; } + public string? CloseReason { get; set; } /// <summary> /// 鍏抽棴鏃ユ湡 ///</summary> @@ -189,7 +189,7 @@ /// 瀹℃牳浜� ///</summary> [SugarColumn(ColumnName="APPROVED_BY" )] - public string ApprovedBy { get; set; } + public string? ApprovedBy { get; set; } /// <summary> /// 瀹℃牳鏃ユ湡 ///</summary> @@ -199,12 +199,12 @@ /// 浣滃簾鐘舵�� ///</summary> [SugarColumn(ColumnName="CANCEL_STATUS" )] - public string CancelStatus { get; set; } + public string? CancelStatus { get; set; } /// <summary> /// 浣滃簾浜� ///</summary> [SugarColumn(ColumnName="CANCELLED_BY" )] - public string CancelledBy { get; set; } + public string? CancelledBy { get; set; } /// <summary> /// 浣滃簾鏃ユ湡 ///</summary> @@ -214,23 +214,23 @@ /// 鍏抽棴鐘舵�� ///</summary> [SugarColumn(ColumnName="CLOSE_STATUS" )] - public string CloseStatus { get; set; } + public string? CloseStatus { get; set; } /// <summary> /// 鏄惁鎵嬪姩鍏抽棴 ///</summary> [SugarColumn(ColumnName="MANUAL_CLOSE_FLAG" )] - public string ManualCloseFlag { get; set; } + public string? ManualCloseFlag { get; set; } /// <summary> /// ERP澶碔D ///</summary> [SugarColumn(ColumnName="ERP_ID" )] - public string ErpId { get; set; } + public string? ErpId { get; set; } /// <summary> /// 鍗曟嵁鐘舵�� ///</summary> [SugarColumn(ColumnName = "BILL_STATUS")] - public string BillStatus { get; set; } + public string? BillStatus { get; set; } } } -- Gitblit v1.9.3