workerman/app/model/Timetable.php

29 lines
456 B
PHP
Raw Normal View History

2024-04-20 15:39:33 +08:00
<?php
namespace app\model;
use support\Model;
class Timetable extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'timetable';
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = 'id';
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = true;
}