heshaofeng
2025-12-03 b4dfb1c5a0a3e6a682a98483e80ff372086aee8d
项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/LocationInfoController.cs
@@ -42,15 +42,20 @@
        }
        [HttpPost, Route("TTTTTAssignLocation"), AllowAnonymous, MethodParamsValidate]
        public WebResponseContent TTTTTAssignLocation()
        public WebResponseContent TTTTTAssignLocation(int locationType)
        {
            var sddd = Service.AssignLocation();
            var sddd = Service.AssignLocation(locationType);
            return WebResponseContent.Instance.OK("resdasd", sddd);
        }
        [HttpPost, Route("GetLocationTypes"), AllowAnonymous, MethodParamsValidate]
        public WebResponseContent GetLocationTypes()
        {
            var lists = Service.GetLocationTypes();
            return WebResponseContent.Instance.OK("", lists);
        }
    }
}