using Microsoft.AspNetCore.Mvc;
|
using WIDESEAWCS_Core.BaseController;
|
using WIDESEAWCS_IBasicInfoService;
|
using WIDESEAWCS_Model.Models;
|
|
namespace WIDESEAWCS_Server.Controllers.BasicInfo
|
{
|
/// <summary>
|
/// 海康货位信息
|
/// </summary>
|
[Route("api/hKLocationInfo")]
|
[ApiController]
|
public class HKLocationInfoController : ApiBaseController<IHKLocationInfoService, Dt_HKLocationInfo>
|
{
|
public HKLocationInfoController(IHKLocationInfoService service) : base(service)
|
{
|
|
}
|
|
}
|
}
|