Browse Source

增加包路径字段,从包名解析

lichunlei 7 months ago
parent
commit
8fe6716ed2
1 changed files with 7 additions and 0 deletions
  1. 7 0
      Model/Custom/ProjectService.cs

+ 7 - 0
Model/Custom/ProjectService.cs

@@ -87,6 +87,13 @@ namespace Custom
         /// 包名
         /// </summary>
         public string? packageName { get; set; }
+        public string? packagePath 
+        { 
+            get
+            {
+                return packageName?.Replace(".", "/");
+            }
+        }