CRM/webman/app/model/Area.php

25 lines
324 B
PHP
Raw Normal View History

2025-03-14 14:27:33 +08:00
<?php
namespace app\model;
use support\Model;
class Area extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'area';
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = 'id';
}