webman/app/model/Pay.php

26 lines
358 B
PHP

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