using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Hosting.Server;
|
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Mvc;
|
using WIDESEAWCS_Core;
|
using WIDESEAWCS_Core.BaseController;
|
using WIDESEAWCS_DTO.TaskInfo;
|
using WIDESEAWCS_DTO.Telescopic;
|
using WIDESEAWCS_ITaskInfoService;
|
using WIDESEAWCS_Model.Models;
|
using WIDESEAWCS_TaskInfoService;
|
using WIDESEAWCS_TelescopicService;
|
|
|
namespace WIDESEAWCS_Server.Controllers.SerialPort
|
{
|
[Route("api/[controller]")]
|
[ApiController]
|
public class IPaddressController : ApiBaseController<IIPaddressServer, Dt_CustomIPaddress>
|
{
|
public IPaddressController(IIPaddressServer service) : base(service)
|
{
|
|
}
|
|
|
|
}
|
}
|