Files
hyperf_service/app/Model/PhonePool.php
2025-04-10 13:41:39 +08:00

35 lines
666 B
PHP

<?php
declare(strict_types=1);
namespace App\Model;
use Hyperf\DbConnection\Model\Model;
/**
* @property int $id
* @property string $phone
* @property string $create_time
*/
class PhonePool extends Model
{
/**
* The table associated with the model.
*/
protected ?string $table = 'phone_pool';
/**
* The attributes that are mass assignable.
*/
protected array $fillable = [];
protected array $guarded = [];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['id' => 'integer'];
const string CREATED_AT = 'create_time';
const null UPDATED_AT = null;
}