From a27f32ecbfc7390ceb9e3a8d8651c57ada88bfa0 Mon Sep 17 00:00:00 2001
From: zjh <2207896513@qq.com>
Date: 星期五, 19 十二月 2025 20:51:42 +0800
Subject: [PATCH] Merge branch 'master' of http://43.142.96.171:8080/r/~tjx/XB_MES_API

---
 StandardPda/MESApplication/Controllers/Warehouse/MesInvItemOutsController.cs |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/StandardPda/MESApplication/Controllers/Warehouse/MesInvItemOutsController.cs b/StandardPda/MESApplication/Controllers/Warehouse/MesInvItemOutsController.cs
index c882dc4..ef3a541 100644
--- a/StandardPda/MESApplication/Controllers/Warehouse/MesInvItemOutsController.cs
+++ b/StandardPda/MESApplication/Controllers/Warehouse/MesInvItemOutsController.cs
@@ -5,6 +5,7 @@
 using MES.Service.service.Warehouse;
 using MES.Service.util;
 using Microsoft.AspNetCore.Mvc;
+using Newtonsoft.Json;
 
 namespace MESApplication.Controllers.Warehouse;
 
@@ -12,9 +13,8 @@
 [Route("api/[controller]")]
 public class MesInvItemOutsController : ControllerBase
 {
-    private readonly MesInvItemOutsManager m = new();
-
     private readonly MessageCenterManager _manager = new();
+    private readonly MesInvItemOutsManager m = new();
 
     private readonly string METHOD = "POST";
 
@@ -33,7 +33,7 @@
         entity.TableName = TableName;
         entity.Url = URL + "ReturnRequest";
         entity.Method = METHOD;
-        entity.Data = Newtonsoft.Json.JsonConvert.SerializeObject(oItemOut);
+        entity.Data = JsonConvert.SerializeObject(oItemOut);
         entity.Status = 1;
         entity.CreateBy = "PL017";
         try

--
Gitblit v1.9.3