webman/app/model/Pay.php

26 lines
358 B
PHP
Raw Normal View History

2025-02-16 22:40:30 +08:00
<?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;
}