11
huangxiaoqiang
2025-04-07 ad684e5f7248967f03c7a20f0ce2f7cfce2e017b
11
已添加2个文件
25 ■■■■■ 文件已修改
Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_IProcessService/IPlatFormService.cs 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_ProcessService/PlatFormService.cs 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_IProcessService/IPlatFormService.cs
对比新文件
@@ -0,0 +1,10 @@
锘縰sing WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_Model.Models;
namespace WIDESEAWCS_IProcessService
{
    public interface IPlatFormService : IService<Platform>
    {
    }
}
Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_ProcessService/PlatFormService.cs
对比新文件
@@ -0,0 +1,15 @@
锘縰sing WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_IProcessRepository;
using WIDESEAWCS_IProcessService;
using WIDESEAWCS_Model.Models;
namespace WIDESEAWCS_ProcessService
{
    public partial class PlatFormService:ServiceBase<Platform,IPlatFormRepository>,IPlatFormService
    {
        public PlatFormService(IPlatFormRepository BaseDal) : base(BaseDal)
        {
        }
    }
}