From 35a617123c0d578772d9f4450bf27d3b52277384 Mon Sep 17 00:00:00 2001
From: 移动系统liao <liaoxujun@qq.com>
Date: 星期二, 30 七月 2024 13:27:40 +0800
Subject: [PATCH] Merge branch 'master' of http://47.108.235.38:8080/r/baifenbaishop

---
 CoreCms.Net.Web.WebApi/Controllers/baifenbingfa/DistributorGoodsController.cs |   35 +++++++++++++++++++++++++++++++++++
 1 files changed, 35 insertions(+), 0 deletions(-)

diff --git a/CoreCms.Net.Web.WebApi/Controllers/baifenbingfa/DistributorGoodsController.cs b/CoreCms.Net.Web.WebApi/Controllers/baifenbingfa/DistributorGoodsController.cs
new file mode 100644
index 0000000..f46e905
--- /dev/null
+++ b/CoreCms.Net.Web.WebApi/Controllers/baifenbingfa/DistributorGoodsController.cs
@@ -0,0 +1,35 @@
+锘縰sing CoreCms.Net.Model.Entities.baifenbingfa.jon;
+using CoreCms.Net.Model.ViewModels.UI;
+using Microsoft.AspNetCore.Authorization;
+using Microsoft.AspNetCore.Mvc;
+using Swashbuckle.AspNetCore.Annotations;
+using System.Threading.Tasks;
+
+namespace CoreCms.Net.Web.WebApi.Controllers.baifenbingfa
+{
+    /// <summary>
+    /// 缁忛攢鍟嗗垱寤哄晢鍝佹帴鍙�
+    /// </summary>
+    [Route("api/[controller]/[action]")]
+    [ApiController]
+    [Authorize]
+    public class DistributorGoodsController : ControllerBase
+    {
+        /// <summary>
+        /// 
+        /// </summary>
+        /// <returns></returns>
+        [HttpPost("GetGoodslist")]
+        [SwaggerResponse(200, "杩斿洖鏁版嵁", typeof(WebApiCallBack))]
+        [SwaggerResponse(201, "Data绫诲瀷", typeof(Job_jobSeting))]
+        public async Task<WebApiCallBack> GetGoodslist()
+        {
+            var jm = new WebApiCallBack();
+
+           
+            jm.status = true;
+            return jm;
+
+        }
+    }
+}

--
Gitblit v1.9.1