dengjunjie
2025-02-11 8467804705615f7614c29e7ef7ac3e99f5c13a54
项目代码/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);
        }
    }
}