1
huangxiaoqiang
2025-04-07 de821d69ff8a57fa9ea7cb1c0138997cad9754ae
1
已添加8个文件
79 ■■■■■ 文件已修改
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_IStoragIntegrationRepository/GlobalUsing.cs 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_IStoragIntegrationRepository/IMOMErrorMessageRepository.cs 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_IStoragIntegrationServices/Error/IMOMErrorMessageService.cs 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationRepository/GlobalUsing.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationRepository/MOMErrorMessageRepository.cs 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationServices/GlobalUsing.cs 17 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationServices/MOM/Error/MOMErrorMessageService.cs 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/MOMErrorMessageController.cs 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_IStoragIntegrationRepository/GlobalUsing.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,2 @@
global using WIDESEA_Core.BaseRepository;
global using WIDESEA_Model.Models;
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_IStoragIntegrationRepository/IMOMErrorMessageRepository.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,7 @@

namespace WIDESEA_IStoragIntegrationRepository;
public interface IMOMErrorMessageRepository : IRepository<MOMErrorMessage>
{
}
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_IStoragIntegrationServices/Error/IMOMErrorMessageService.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.BaseServices;
using WIDESEA_Model.Models;
namespace WIDESEA_IStoragIntegrationServices.MOM.Error
{
    public interface IMOMErrorMessageService : IService<MOMErrorMessage>
    {
    }
}
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationRepository/GlobalUsing.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,3 @@
global using WIDESEA_Core.BaseRepository;
global using WIDESEA_IStoragIntegrationRepository;
global using WIDESEA_Model.Models;
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationRepository/MOMErrorMessageRepository.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,8 @@
namespace WIDESEA_StoragIntegrationRepository;
public class MOMErrorMessageRepository : RepositoryBase<MOMErrorMessage>, IMOMErrorMessageRepository
{
    public MOMErrorMessageRepository(IUnitOfWorkManage unitOfWorkManage) : base(unitOfWorkManage)
    {
    }
}
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationServices/GlobalUsing.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,17 @@
global using AutoMapper;
global using WIDESEA_Core;
global using WIDESEA_Core.Enums;
global using WIDESEA_Core.BaseRepository;
global using WIDESEA_Core.BaseServices;
global using WIDESEA_Core.Helper;
global using WIDESEA_IStorageTaskRepository;
global using WIDESEA_Model.Models;
global using WIDESEA_IBusinessesRepository;
global using WIDESEA_IStorageBasicRepository;
global using WIDESEA_IStorageBasicService;
global using LogLibrary.Log;
global using Newtonsoft.Json;
global using WIDESEA_IStoragIntegrationRepository;
global using WIDESEA_IStoragIntegrationServices.MOM.Error;
global using WIDESEA_Common;
global using WIDESEA_DTO;
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationServices/MOM/Error/MOMErrorMessageService.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_StoragIntegrationServices.MOM.Error
{
    public class MOMErrorMessageService : ServiceBase<MOMErrorMessage, IMOMErrorMessageRepository>, IMOMErrorMessageService
    {
        public MOMErrorMessageService(IMOMErrorMessageRepository BaseDal) : base(BaseDal)
        {
        }
    }
}
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/MOMErrorMessageController.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,13 @@
using WIDESEA_IStoragIntegrationServices.MOM.Error;
using WIDESEA_Model.Models;
namespace WIDESEA_WMSServer.Controllers;
[Route("api/MOMErrorMessage")]
[ApiController]
public class MOMErrorMessageController : ApiBaseController<IMOMErrorMessageService, MOMErrorMessage>
{
    public MOMErrorMessageController(IMOMErrorMessageService service) : base(service)
    {
    }
}