using Microsoft.AspNetCore.Mvc;
using WIDESEAWCS_Core.BaseController;
using WIDESEAWCS_IBasicInfoService;
using WIDESEAWCS_Model.Models;
namespace WIDESEAWCS_Server.Controllers.BasicInfo
{
///
/// 凯乐士货位信息
///
[Route("api/kLSLocationInfo")]
[ApiController]
public class KLSLocationInfoController : ApiBaseController
{
public KLSLocationInfoController(IKLSLocationInfoService service) : base(service)
{
}
}
}