webman/plugin/admin/app/model/Volunteerservicecorpsdetail...

33 lines
608 B
PHP
Raw Permalink Normal View History

2025-02-15 12:13:10 +08:00
<?php
namespace app\model;
use support\Model;
/**
* @property integer $id 主键(主键)
* @property string $created_at 创建时间
* @property string $updated_at 更新时间
* @property integer $userid 用户id
* @property integer $groupid 对应的组id
*/
class Volunteerservicecorpsdetailed extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'volunteerservicecorpsdetailed';
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = 'id';
}