等温枚举
enum class IsothermEnum
描述: 等温线类型
enum class IsothermEnum(var value: Int) {
    /**
     *  关闭
     */
    CLOSE(0),
    /**
     * 搜人
     */
    PEOPLE(1),
    /**
     * 搜火
     */
    FIRE(2),
    /**
     * 自定义
     */
    CUSTOMIZE(3),
    UNKNOWN(0xFF);
    }