using Microsoft.AspNetCore.Mvc;
|
using WIDESEAWCS_Core.BaseController;
|
using WIDESEAWCS_ISystemServices;
|
using WIDESEAWCS_ITaskInfoService;
|
using WIDESEAWCS_Model.Models;
|
using WIDESEAWCS_Model.Models.System;
|
using WIDESEAWCS_SystemServices;
|
|
namespace WIDESEAWCS_Server.Controllers.System
|
{
|
[Route("api/Weight_Hty")]
|
[ApiController]
|
public class Weight_HtyController : ApiBaseController<Idt_WeightHtyService, dt_Weight_hty>
|
{
|
public Weight_HtyController(Idt_WeightHtyService service) : base(service)
|
{
|
}
|
}
|
}
|