| 1234567891011121314151617181920212223242526272829 | <?phpnamespace app\admin\model;use support\Db;use support\Model;/** * 书院订单详情模型 * Class Users * @package app\admin\model */class BookCourseLog extends Model{    /**     * The table associated with the model.     *     * @var string     */    protected $table = 'life_book_course_log';    public $timestamps = false;    public function User(){        return $this->belongsTo(User::class,'log_user_id','user_id');    }    }
 |