1
dengjunjie
2025-06-26 72390e0230b64cd43fedf0ba8e17aba097568a4a
代码管理/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Record/LocationStatusChangeRecordController.cs
@@ -1,5 +1,7 @@
锘縰sing Microsoft.AspNetCore.Http;
锘縰sing Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_IRecordService;
using WIDESEA_Model.Models;
@@ -13,5 +15,10 @@
        public LocationStatusChangeRecordController(ILocationStatusChangeRecordSetvice service) : base(service)
        {
        }
        [HttpPost, HttpGet,Route("GetLocationState")]
        public WebResponseContent GetLocationState(int id)
        {
            return Service.GetLocationState(id);
        }
    }
}