course/app/common/model/TimeZone.php

25 lines
451 B
PHP

<?php
namespace app\common\model;
use app\BaseModel;
use support\Model;
/**
* wa_time_zone 时差
* @property integer $id (主键)
* @property string $name 时区名称
* @property string $text 描述
* @property string $offset 时差
* @property string $utc utc国家
* @property mixed $created_at 创建时间
* @property string $updated_at 更新时间
* @property string $deleted_at
*/
class TimeZone extends BaseModel
{
}