Browse Source

版本信息提供app接口

lcl 3 months ago
parent
commit
42b425bd89
2 changed files with 37 additions and 0 deletions
  1. 17 0
      Controllers/AppVersionController.cs
  2. 20 0
      Model/Dto/AppVersionLastDto.cs

+ 17 - 0
Controllers/AppVersionController.cs

@@ -65,6 +65,23 @@ namespace Controllers
             return SUCCESS(response);
         }
 
+        /// <summary>
+        /// app版本管理详情
+        /// </summary>
+        /// <param name="parm">请求参数</param>
+        /// <returns>app版本管理详情</returns>
+        [HttpGet]
+        [Route("/v1/api/AppVersion/last")]
+        public IActionResult Last([FromQuery] AppVersionLastDto parm)
+        {
+            var response = _AppVersionService.Queryable()
+                .Where(x => x.terminalKind == parm.terminalKind)
+                .OrderByDescending(x => x.versionNum)
+                .First()
+                .Adapt<AppVersionQueryVo>() ?? new AppVersionQueryVo();
+            return SUCCESS(response);
+        }
+
 
 
 

+ 20 - 0
Model/Dto/AppVersionLastDto.cs

@@ -0,0 +1,20 @@
+using System;
+using System.ComponentModel.DataAnnotations;
+using Model.Base;
+
+namespace Dto
+{
+    /// <summary>
+    /// 详情
+    /// </summary>
+    public class AppVersionLastDto
+    {
+        /// <summary>
+        /// ID
+        /// </summary>
+        public string terminalKind { get; set; }
+
+
+
+    }
+}