haojianlong 4 years ago
parent
commit
3785f7aa61
1 changed files with 6 additions and 6 deletions
  1. 6 6
      persagy-web-big/src/types/floor/Casement.ts

+ 6 - 6
persagy-web-big/src/types/floor/Casement.ts

@@ -33,22 +33,22 @@ import { Place } from "../Place";
  * @author  郝建龙
  */
 export interface Casement {
-    /** 位置  */
+    /** 位置 */
     Location: Place;
-    /** 模型id(外键)    */
+    /** 模型id(外键) */
     ModelId: string;
-    /** 名称  */
+    /** 名称 */
     Name: string;
-    /** 轮廓线  */
+    /** 轮廓线 */
     OutLine: Point[][];
     /** 拥有者的RevitId */
     Owner: string;
     /** 对应Revit模型id */
     SourceId: string;
-    /** 厚度  */
+    /** 厚度 */
     Thick: number;
     /** 所属墙 */
     WallId: string;
-    /** 宽度  */
+    /** 宽度 */
     Width: string;
 } // interface Casement