Zhang-Hong-Lin
2 天以前 232cdf071bfe3bd2b77ba05accba89b67fcc1edc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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();
        }
    }
}