海信彩屏线控器展会demo项目,20230515
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
254 B

/** 风量枚举 */
export enum Wind {
/** 微风 */
LIGHT,
/** 超低风 */
SUPER_LOW,
/** 低风 */
LOW,
/** 中风 */
MIDDLE,
/** 高风 */
HIGH,
/** 超高风 */
SUPER_HIGH,
/** 自动 */
AUTO
}