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