Переглянути джерело

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,
+}