瀏覽代碼

chore(constants): 更新温湿度类型常量

wangshun 2 月之前
父節點
當前提交
637e90626a
共有 1 個文件被更改,包括 18 次插入0 次删除
  1. 18 0
      src/constants/index.ts

+ 18 - 0
src/constants/index.ts

@@ -49,3 +49,21 @@ export const enum DictCode {
  */
 export const fileContentTypeRegExp =
   /^(application\/(octet-stream|pdf|zip|x-tar|msword|vnd.openxmlformats-officedocument\.wordprocessingml\.document|vnd.ms-excel|vnd.openxmlformats-officedocument\.spreadsheetml\.sheet)|image\/|audio\/|video\/)/;
+
+/**
+ * 温湿度类型
+ */
+export const enum HumitureType {
+  /**
+   * 回风温湿度
+   */
+  ReturnAir,
+  /**
+   * 送风温湿度
+   */
+  SupplyAir,
+  /**
+   * 室外温湿度
+   */
+  Outdoor,
+}