webman/app/model/Jobuser.php

25 lines
358 B
PHP

<?php
namespace app\model;
use support\Model;
class Jobuser extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'user';
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = 'id';
public $timestamps = false;
}