dengjunjie
2025-04-26 18d2f40bbf40469b033de6f07ca8a8e3bc191132
项目代码/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);
        }
    }
}