46 lines
2.2 KiB
PHP
46 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
/**
|
|
* Class ProjectTask
|
|
*
|
|
* @package App\Models
|
|
* @property int $id
|
|
* @property int|null $parent_id 父级任务ID
|
|
* @property int|null $project_id 项目ID
|
|
* @property int|null $column_id 列表ID
|
|
* @property string|null $name 标题
|
|
* @property string|null $desc 描述
|
|
* @property string|null $start_at 计划开始时间
|
|
* @property string|null $end_at 计划结束时间
|
|
* @property string|null $archived_at 归档时间
|
|
* @property string|null $complete_at 完成时间
|
|
* @property int|null $userid 创建人
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
* @property \Illuminate\Support\Carbon|null $deleted_at
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereArchivedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereColumnId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereCompleteAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereDeletedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereDesc($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereEndAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereName($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereParentId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereProjectId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereStartAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereUserid($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class ProjectTask extends AbstractModel
|
|
{
|
|
|
|
}
|