using Microsoft.AspNetCore.Mvc; using WIDESEAWCS_BasicInfoService; using WIDESEAWCS_Core.BaseController; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_Server.Controllers.BasicInfo { /// /// 工位信息 /// [Route("api/scanStation")] [ApiController] public class ScanStationController : ApiBaseController { public ScanStationController(IScanStationService service) : base(service) { } } }