using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Mvc;
|
using WIDESEAWCS_Core.BaseController;
|
using WIDESEAWCS_ISystemServices;
|
using WIDESEAWCS_Model.Models;
|
|
namespace WIDESEAWCS_Server.Controllers.System
|
{
|
[Route("api/Dt_Stationinfo")]
|
[ApiController]
|
public class Dt_StationinfoController : ApiBaseController<IDt_StationinfoService, Dt_Stationinfo>
|
{
|
public Dt_StationinfoController(IDt_StationinfoService service) : base(service)
|
{
|
}
|
}
|
}
|