using Microsoft.AspNetCore.Mvc; 
 | 
using WIDESEAWCS_Core; 
 | 
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> 
 | 
    { 
 | 
        private readonly Idt_WeightHtyService _Idt_WeightHtyService; 
 | 
        public Weight_HtyController(Idt_WeightHtyService service) : base(service) 
 | 
        { 
 | 
            _Idt_WeightHtyService = service; 
 | 
        } 
 | 
  
 | 
        //全部删除 
 | 
        [HttpPost, HttpGet, Route("alldelete")] 
 | 
        public WebResponseContent alldelete() 
 | 
        { 
 | 
            return Service.alldelete(); 
 | 
        } 
 | 
    } 
 | 
} 
 |