From 5141cb46c3e277e58ea71d3d99b116ca816974e1 Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期一, 20 一月 2025 01:20:32 +0800 Subject: [PATCH] 1.改造客户信息接口,将组织id变为单据体 2.修改处理数据方法,有一个组织id就有几条数据,并插入。 --- StandardPda/MES.Service/Dto/webApi/ErpCustomer.cs | 25 +++++++++---------------- 1 files changed, 9 insertions(+), 16 deletions(-) diff --git a/StandardPda/MES.Service/Dto/webApi/ErpCustomer.cs b/StandardPda/MES.Service/Dto/webApi/ErpCustomer.cs index d6d588a..cb8cf44 100644 --- a/StandardPda/MES.Service/Dto/webApi/ErpCustomer.cs +++ b/StandardPda/MES.Service/Dto/webApi/ErpCustomer.cs @@ -10,22 +10,15 @@ public string? FContact { get; set; } public string? FMobilephone { get; set; } public string? FSeller { get; set; } - /// <summary> - /// 鎺ュ彛瀛楁璋冩暣锛氭爣鍑嗙増鎺ュ彛鏂板 ERP鍗曟嵁鐘舵�� 瀛楁銆� - /// </summary> - /// <remarks> - /// 淇敼浜猴細<姹犲崡楠�> - /// 淇敼鏃ユ湡锛�<2024-12-27> - /// 淇敼璇存槑锛� - /// - 鍘熶唬鐮侊細绌� - /// - 淇敼鍚庯細 - ///public string? FDocumentStatus { get; set; } - /// </remarks> - public string? FDocumentStatus { get; set; } + public string? State { get; set; } public string? FForbidStatus { get; set; } - public string? FCreateOrgId { get; set; } - public string? FUseOrgId { get; set; } - //public string? FDescription { get; set; } - public string? fremarks { get; set; } + public List<ErpDetail>? ErpDetails { get; set; } + +} + +public class ErpDetail +{ + public string? FUseOrgId { get; set; } + } \ No newline at end of file -- Gitblit v1.9.3