using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_Core;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IBasicService;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_WMSServer.Controllers.Basic
|
{
|
/// <summary>
|
/// AGV站点信息
|
/// </summary>
|
[Route("api/AGVStationInfo")]
|
[ApiController]
|
public class AGVStationInfoController : ApiBaseController<IAGVStationInfoService, Dt_AGVStationInfo>
|
{
|
public AGVStationInfoController(IAGVStationInfoService service) : base(service)
|
{
|
}
|
}
|
}
|