huangxiaoqiang
2025-06-12 c54e0666bdd34fbe133fe521bf9d46dd6c0fe53e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Microsoft.AspNetCore.Mvc;
using WIDESEAWCS_Core.BaseController;
using WIDESEAWCS_IBasicInfoService;
using WIDESEAWCS_Model.Models.BasicInfo;
 
namespace WIDESEAWCS_Server.Controllers.BasicInfo
{
    [Route("api/Dt_StationManager")]
    [ApiController]
    public class Dt_StationManagerController : ApiBaseController<IDt_StationManagerService, Dt_StationManager>
    {
        private readonly IHttpContextAccessor _httpContextAccessor;
        public Dt_StationManagerController(IDt_StationManagerService service, IHttpContextAccessor httpContextAccessor) : base(service)
        {
            _httpContextAccessor = httpContextAccessor;
        }
 
 
    }
}