LiveLink.php
424 字节
<?php
namespace addons\shopro\model;
use think\Model;
use addons\shopro\exception\Exception;
use think\Db;
/**
* 直播
*/
class LiveLink extends Model
{
// 表名,不含前缀
protected $name = 'shopro_live_link';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
}