1
huangxiaoqiang
2025-05-15 0dbd8883d110d90f8955d5d52717bdb816c26c67
1
已添加5个文件
81 ■■■■■ 文件已修改
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_BusinessServices/Dt_ChangeoversService.cs 19 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_BusinessesRepository/Dt_ChangeoversRepository.cs 17 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_IBusinessServices/IDt_ChangeoversService.cs 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_IBusinessesRepository/IDt_ChangeoversRepository.cs 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/Dt_ChangeoversController.cs 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_BusinessServices/Dt_ChangeoversService.cs
对比新文件
@@ -0,0 +1,19 @@
锘縰sing WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_IBusinessesRepository;
using WIDESEA_IBusinessServices;
using WIDESEA_Model.Models;
using WIDESEA_Model.Models.BasicModel;
namespace WIDESEA_BusinessServices
{
    public class Dt_ChangeoversService : ServiceBase<Dt_Changeovers, IDt_ChangeoversRepository>, IDt_ChangeoversService
    {
        private readonly IUnitOfWorkManage _unitOfWorkManage;
        public Dt_ChangeoversService(IDt_ChangeoversRepository BaseDal, IUnitOfWorkManage unitOfWorkManage) : base(BaseDal)
        {
            _unitOfWorkManage = unitOfWorkManage;
        }
    }
}
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_BusinessesRepository/Dt_ChangeoversRepository.cs
对比新文件
@@ -0,0 +1,17 @@
锘縰sing SqlSugar;
using System.Linq.Expressions;
using WIDESEA_Core;
using WIDESEA_Core.BaseRepository;
using WIDESEA_IBusinessesRepository;
using WIDESEA_Model.Models;
using WIDESEA_Model.Models.BasicModel;
namespace WIDESEA_Repository
{
    public class Dt_ChangeoversRepository : RepositoryBase<Dt_Changeovers>, IDt_ChangeoversRepository
    {
        public Dt_ChangeoversRepository(IUnitOfWorkManage unitOfWorkManage) : base(unitOfWorkManage)
        {
        }
    }
}
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_IBusinessServices/IDt_ChangeoversService.cs
对比新文件
@@ -0,0 +1,15 @@
锘縰sing System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.BaseServices;
using WIDESEA_Model.Models;
using WIDESEA_Model.Models.BasicModel;
namespace WIDESEA_IBusinessServices
{
    public interface IDt_ChangeoversService : IService<Dt_Changeovers>
    {
    }
}
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_IBusinessesRepository/IDt_ChangeoversRepository.cs
对比新文件
@@ -0,0 +1,15 @@
锘縰sing System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Model.Models;
using WIDESEA_Model.Models.BasicModel;
namespace WIDESEA_IBusinessesRepository
{
    public interface IDt_ChangeoversRepository : IRepository<Dt_Changeovers>
    {
    }
}
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/Dt_ChangeoversController.cs
对比新文件
@@ -0,0 +1,15 @@
锘縰sing WIDESEA_IBusinessServices;
using WIDESEA_Model.Models.BasicModel;
namespace WIDESEA_WMSServer.Controllers;
[Route("api/[controller]")]
[ApiController]
public class Dt_ChangeoversController : ApiBaseController<IDt_ChangeoversService, Dt_Changeovers>
{
    public Dt_ChangeoversController(IDt_ChangeoversService service) : base(service)
    {
    }
}