huangxiaoqiang
2 天以前 eaa7c0d999c6dd7901bf4f0de79b861eae38e978
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;
 
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;
        }
 
 
    }
}