1
dengjunjie
2025-06-19 fbc6fae6c793220d0b67ac603ce9bbf22837de79
项目代码/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);
        }
    }
}