更改命名空间并优化方法参数格式
在 `MOMErrorMessage.cs` 和 `MoMErrorMsg.cs` 文件中,命名空间从 `WIDESEA_DTO.MOM` 更改为 `WIDESEA_Model.Models`。同时,优化了 `MoMErrorMsg.cs` 文件中 `AddMoMErrorMsg` 方法的参数格式,移除了 `string ApiName` 前的多余空格。
文件名从 Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/MOMErrorMessage.cs 修改 |
| | |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | |
| | | namespace WIDESEA_DTO.MOM |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | public class MOMErrorMessage |
| | | { |
| | |
| | | using SqlSugar; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.Helper; |
| | | using WIDESEA_DTO.MOM; |
| | | using WIDESEA_Model.Models; |
| | | |
| | | namespace WIDESEA_StoragIntegrationServices |
| | | { |
| | |
| | | { |
| | | 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 |