30 lines
1.2 KiB
PHP
30 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
/**
|
|
* Class ProjectUser
|
|
*
|
|
* @package App\Models
|
|
* @property int $id
|
|
* @property int|null $project_id 项目ID
|
|
* @property int|null $userid 成员ID
|
|
* @property int|null $owner 是否负责人
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectUser newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectUser newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectUser query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectUser whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectUser whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectUser whereOwner($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectUser whereProjectId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectUser whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectUser whereUserid($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class ProjectUser extends AbstractModel
|
|
{
|
|
|
|
}
|