36 lines
997 B
PHP
36 lines
997 B
PHP
|
<?php
|
||
|
|
||
|
namespace app\model;
|
||
|
|
||
|
use support\Model;
|
||
|
|
||
|
/**
|
||
|
* @property string $created_at 创建时间
|
||
|
* @property string $updated_at 更新时间
|
||
|
* @property integer $projectid 对应项目id(主键)
|
||
|
* @property integer $serviceduration 服务时长单位分钟
|
||
|
* @property integer $recruitingpersonnel 招募人数志愿者
|
||
|
* @property integer $registerserve 招募人数被服务者
|
||
|
* @property string $servicedescription 服务说明
|
||
|
* @property integer $totalnumberoftimecoins 时间币/每个人
|
||
|
* @property integer $volunteergender 志愿者性别要求1为男0为女
|
||
|
* @property integer $volunteerage 志愿者年龄
|
||
|
* @property string $registrationisclosed 报名截止日期
|
||
|
*/
|
||
|
class ProjectDetailed extends Model
|
||
|
{
|
||
|
/**
|
||
|
* The table associated with the model.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $table = 'project_detailed';
|
||
|
|
||
|
/**
|
||
|
* The primary key associated with the table.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $primaryKey = 'projectid';
|
||
|
}
|