Browse Source

更新结构

CrazyIter_Bin 3 years ago
parent
commit
791405bd08
1 changed files with 8 additions and 6 deletions
  1. 8 6
      TEAMModelOS.SDK/Models/Cosmos/Common/SheetConfig.cs

+ 8 - 6
TEAMModelOS.SDK/Models/Cosmos/Common/SheetConfig.cs

@@ -18,14 +18,15 @@ namespace TEAMModelOS.SDK.Models.Cosmos.Common
         ///  //列数
         /// </summary>
         public int columns { get; set; }
+        public int pageCount { get; set; }
         /// <summary>
         /// 页面大小(回字组成的)
         /// </summary>
-        public double pageWidth { get; set; }
+        public int pageWidth { get; set; }
         /// <summary>
         /// 页面大小(回字组成的)
         /// </summary>
-        public double pageHeight { get; set; }
+        public int pageHeight { get; set; }
         /// <summary>
         /// 页码块数量
         /// </summary>
@@ -65,11 +66,12 @@ namespace TEAMModelOS.SDK.Models.Cosmos.Common
     }
     public class ConfigContent
     {
+        public int count { get; set; }
         public int type { get; set; }
-        public double x { get; set; }
-        public double y { get; set; }
-        public double width { get; set; }
-        public double height { get; set; }
+        public int x { get; set; }
+        public int y { get; set; }
+        public int width { get; set; }
+        public int height { get; set; }
         public int pageNum { get; set; }
         public int vblockCount { get; set; }
         public int hblockCount { get; set; }