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