using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WIDESEA_Core; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseController; using WIDESEAWCS_IBasicInfoService; using WIDESEAWCS_Model.Models; namespace WIDESEA_WMSServer.Controllers.Basic { /// /// 货位状态变动记录 /// [Route("api/LocationStatusChangeRecord")] [ApiController] public class LocationStatusChangeRecordController : ApiBaseController { public LocationStatusChangeRecordController(ILocationStatusChangeRecordService service) : base(service) { } /// /// 获取指定货位变动记录 /// /// [HttpPost, HttpGet,Route("GetLocationState")] public WebResponseContent GetLocationState(int id) { return Service.GetLocationState(id); } } }