12345678910111213141516171819202122232425 |
- <?php
- namespace app\admin\model;
- use support\Db;
- use support\Model;
- /**
- * 角色模型
- * Class Users
- * @package app\admin\model
- */
- class YxCity extends Model
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'city';
- public $timestamps = false;
- }
|