xxyy
2025-03-04 3bb8be2b84ab6456d28881b3cf99a4b40560ed6b
更改命名空间并优化方法参数格式

在 `MOMErrorMessage.cs` 和 `MoMErrorMsg.cs` 文件中,命名空间从 `WIDESEA_DTO.MOM` 更改为 `WIDESEA_Model.Models`。同时,优化了 `MoMErrorMsg.cs` 文件中 `AddMoMErrorMsg` 方法的参数格式,移除了 `string ApiName` 前的多余空格。
已修改1个文件
已重命名1个文件
6 ■■■■ 文件已修改
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/MOM/MOMErrorMessage.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationServices/MOM/Error/MoMErrorMsg.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/MOM/MOMErrorMessage.cs
文件名从 Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/MOMErrorMessage.cs 修改
@@ -5,7 +5,7 @@
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_DTO.MOM
namespace WIDESEA_Model.Models
{
    public class MOMErrorMessage
    {
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationServices/MOM/Error/MoMErrorMsg.cs
@@ -2,7 +2,7 @@
using SqlSugar;
using WIDESEA_Core;
using WIDESEA_Core.Helper;
using WIDESEA_DTO.MOM;
using WIDESEA_Model.Models;
namespace WIDESEA_StoragIntegrationServices
{
@@ -10,7 +10,7 @@
    {
        public static SqlSugarScope Db = SqlSugarHelper.DbWMS;
        public static WebResponseContent AddMoMErrorMsg(int TaskNum, string PalletCode, string ErrorMsg,string ApiName)
        public static WebResponseContent AddMoMErrorMsg(int TaskNum, string PalletCode, string ErrorMsg, string ApiName)
        {
            WebResponseContent content = new WebResponseContent();
            try