Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StorageBasicServices/BasicInfo/Dt_StationManagerService.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StorageBasicServices/BasicInfo/Partial/Method.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StorageBasicServices/WIDESEA_StorageBasicServices.csproj | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StorageBasicServices/BasicInfo/Dt_StationManagerService.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,16 @@ using WIDESEA_IServices; using WIDESEAWCS_BasicInfoRepository; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_BasicInfoService { public partial class Dt_StationManagerService : ServiceBase<Dt_StationManager, IDt_StationManagerRepository>, IDt_StationManagerService { private readonly ISys_ConfigService _sys_ConfigService; public Dt_StationManagerService(IDt_StationManagerRepository BaseDal, ISys_ConfigService sys_ConfigService) : base(BaseDal) { _sys_ConfigService = sys_ConfigService; } } } Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StorageBasicServices/BasicInfo/Partial/Method.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,24 @@ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_BasicInfoService { public partial class Dt_StationManagerService { public List<Dt_StationManager> GetAllStationByDeviceCode(string DeviceCode) { //todoï¼ ä½¿ç¨ç¼åå¨å return BaseDal.QueryData(x => x.stationPLC == DeviceCode).ToList(); } public Dt_StationManager GetStationInfoByChildCode(string ChildCode) { return BaseDal.QueryFirst(x => x.stationChildCode == ChildCode); } } } Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StorageBasicServices/WIDESEA_StorageBasicServices.csproj
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,26 @@ <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net6.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <NoWarn>1701;1702;8602;8629;8603;8604;8601;</NoWarn> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> <NoWarn>1701;1702;8602;8629;8603;8604;8601;</NoWarn> </PropertyGroup> <ItemGroup> <ProjectReference Include="..\WIDESEA_IBusinessServices\WIDESEA_IBusinessServices.csproj" /> <ProjectReference Include="..\WIDESEA_IServices\WIDESEA_IServices.csproj" /> <ProjectReference Include="..\WIDESEA_IStorageBasicService\WIDESEA_IStorageBasicServices.csproj" /> <ProjectReference Include="..\WIDESEA_IStorageOutOrderService\WIDESEA_IStorageOutOrderServices.csproj" /> <ProjectReference Include="..\LogLibrary\LogLibrary.csproj" /> <ProjectReference Include="..\WIDESEA_IStorageTaskService\WIDESEA_IStorageTaskServices.csproj" /> </ItemGroup> </Project>