lcl 8 달 전
부모
커밋
fd84824957
2개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Controller/Client/AppController.cs
  2. 8 0
      Model/Dto/Client/AppPageInfoDto.cs

+ 1 - 1
Controller/Client/AppController.cs

@@ -80,7 +80,7 @@ namespace Controllers
         public IActionResult PageInfo([FromQuery] AppPageInfoDto parm)
         {
             var response = _PageUpdateInfoService.Queryable()
-                .First(x => x.modulePath == parm.modulePath)
+                .First(x => x.moduleVersion == parm.moduleVersion)
                 .Adapt<AppPageInfoVo>() ?? new AppPageInfoVo();
             return SUCCESS(response);
         }

+ 8 - 0
Model/Dto/Client/AppPageInfoDto.cs

@@ -9,6 +9,14 @@ namespace Dto
     /// </summary>
     public class AppPageInfoDto
     {
+        /// <summary>
+        /// 模板更新版本
+        /// </summary>
+        [Required(ErrorMessage = "模板更新版本不能为空")]
+        [RegularExpression(@"^\d+$", ErrorMessage = "模板更新版本格式有误")]
+        public int moduleVersion { get; set; }
+
+
         /// <summary>
         /// 模板路径
         /// </summary>