1
dengjunjie
2025-03-11 94b11f93e7985e8ca499465af228f78301fd6e86
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Record/LocationStatusChangeRecordController.cs
@@ -1,5 +1,6 @@
锘縰sing Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_IRecordService;
using WIDESEA_Model.Models;
@@ -13,5 +14,11 @@
        public LocationStatusChangeRecordController(ILocationStatusChangeRecordSetvice service) : base(service)
        {
        }
        [HttpPost, Route("Get_LocationStatusChangeRecord")]
        public List<Dt_LocationStatusChangeRecord> Get_LocationStatusChangeRecord(int id)
        {
            return Service.Get_LocationStatusChangeRecord(id);
        }
    }
}