This commit is contained in:
kuaifan
2025-08-01 12:50:15 +08:00
parent c53e978106
commit 62ec634db3
102 changed files with 959 additions and 933 deletions

View File

@@ -6,8 +6,10 @@ namespace App\Models;
* App\Models\ProjectTaskTag
*
* @property int $id
* @property int|null $tag_id
* @property int|null $project_id 项目ID
* @property int|null $task_id 任务ID
* @property int|null $userid 用户ID创建者
* @property string|null $name 标题
* @property string|null $color 颜色
* @property \Illuminate\Support\Carbon|null $created_at
@@ -26,8 +28,10 @@ namespace App\Models;
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskTag whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskTag whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskTag whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskTag whereTagId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskTag whereTaskId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskTag whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTaskTag whereUserid($value)
* @mixin \Eloquent
*/
class ProjectTaskTag extends AbstractModel