using Microsoft.AspNetCore.Mvc;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEAWCS_Core;
|
using WIDESEAWCS_Core.BaseServices;
|
using WIDESEAWCS_Model;
|
using WIDESEAWCS_Model.Models;
|
using WIDESEAWCS_Model.Models.System;
|
|
namespace WIDESEAWCS_ISystemServices
|
{
|
public interface IPlatformStationService : IService<PlatformStation>
|
{
|
public List<string> GetPlatform(string deviceNo);
|
public List<string> GetPlatform2(string deviceNo);
|
public List<string> GetPlatform3(string deviceNo);
|
public List<string> GetPlatIn(string deviceNo);
|
public List<PlatformStation> GetPlatformList(string deviceNo);
|
public List<PlatformStation> GetPlatformOutList(string deviceNo);
|
|
public string GetSCName(string deviceNo);
|
public string GetOutSCName(string deviceNo, int Station_storey);
|
}
|
}
|