Browse Source

增加//发布机构//创建者/报告人

CrazyIter_Bin 3 years ago
parent
commit
f7bd5fd7f4
1 changed files with 11 additions and 1 deletions
  1. 11 1
      TEAMModelOS.SDK/Models/Cosmos/School/StandardFile.cs

+ 11 - 1
TEAMModelOS.SDK/Models/Cosmos/School/StandardFile.cs

@@ -6,7 +6,9 @@ namespace TEAMModelOS.SDK.Models
 {
     public class StandardFile : CosmosEntity
     {
-        //id为区域编码,pk='StandardFile',code="StandardFile"
+        /// <summary>
+        /// id为区域编码,pk='StandardFile',code="StandardFile"
+        /// </summary>
         public StandardFile()
         {
             pk = "StandardFile";
@@ -52,5 +54,13 @@ namespace TEAMModelOS.SDK.Models
         /// 文件类型
         /// </summary>
         public string type { get; set; }
+        /// <summary>
+        /// 发布机构
+        /// </summary>
+        public string org { get; set; }
+        /// <summary>
+        /// 创建者/报告人
+        /// </summary>
+        public string creatorId { get; set; }
     }
 }