using Microsoft.AspNetCore.Mvc; using WIDESEAWCS_Core.BaseController; using WIDESEAWCS_IBasicInfoService; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_Server.Controllers.BasicInfo { /// /// 四向车货位信息 /// [Route("api/rGVLocationInfo")] [ApiController] public class RGVLocationInfoController : ApiBaseController { public RGVLocationInfoController(IRGVLocationInfoService service) : base(service) { } } }