no message

This commit is contained in:
kuaifan
2021-06-16 22:37:28 +08:00
parent face5a943d
commit 7c6dcc3daa
16 changed files with 601 additions and 241 deletions

View File

@@ -9,6 +9,7 @@ namespace App\Models;
* @property int $id
* @property int|null $project_id 项目ID
* @property int|null $task_id 任务ID
* @property int|null $task_pid 任务ID如果是子任务则是父级任务ID
* @property int|null $userid 成员ID
* @property int|null $owner 是否任务负责人
* @property \Illuminate\Support\Carbon|null $created_at
@@ -21,6 +22,7 @@ namespace App\Models;
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskUser whereOwner($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskUser whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskUser whereTaskId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskUser whereTaskPid($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskUser whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskUser whereUserid($value)
* @mixin \Eloquent