<?php
namespace App\Enums;
enum WindDirection: int
{
case North = 0; // 北风
case Northeast = 1; // 东北风;
case East = 2; // 东风
case Southeast = 3; // 东南风
case South = 4; // 南方
case Southwest = 5; // 西南风
case West = 6; // 西风
case Northwest = 7; // 西北风
}