guild/frontend/modules/api/models/ProjectColumn.php

117 lines
4.2 KiB
PHP
Raw Normal View History

2023-04-25 01:32:15 +03:00
<?php
namespace frontend\modules\api\models;
/**
*
* @OA\Schema(
* schema="ProjectColumn",
* @OA\Property(
* property="id",
* type="int",
* example=95,
* description="Идентификатор колонки"
* ),
* @OA\Property(
* property="title",
* type="string",
* example="Задачи на проверку",
* description="Название колонки"
* ),
* @OA\Property(
* property="project_id",
* type="int",
* example="95",
* description="Проект к которому относится колонка"
* ),
* @OA\Property(
* property="status",
* type="int",
* example="1",
* description="Статус колонки"
* ),
* @OA\Property(
2023-05-11 01:18:40 +03:00
* property="priority",
* type="int",
* example="1",
* description="Приоритет колонки"
* ),
* @OA\Property(
2023-04-25 01:32:15 +03:00
* property="tasks",
* ref="#/components/schemas/ProjectTask",
* ),
*)
*
* @OA\Schema(
* schema="ProjectColumnExample",
* type="array",
* example={
2023-05-11 01:18:40 +03:00
* {"id": 1, "title": "Задачи на проверку", "project_id": 95, "status": 1, "priority": 1,
2023-04-25 01:32:15 +03:00
* "tasks": {
2023-05-17 01:14:54 +03:00
* {"id": 95, "title": "Сложная задача", "project_id": 44, "column_id": 1, "user_id": 19, "description": "Описание задачи", "status": 1, "comment_count": 3,
2023-04-25 01:32:15 +03:00
* "taskUsers": {
* {"id": 2, "task_id": 95, "user_id": 2, "fio": "Сапронов Антон Викторович", "avatar": "/profileava/m8.png"},
* {"id": 3, "task_id": 95, "user_id": 3, "fio": "Иванов Иван Иванович", "avatar": "/profileava/m2.png"},
* },
* "timers": {
* {"id": 12, "created_at": "2023-04-07 02:09:42", "stopped_at": "2023-04-10 16:20:48", "user_id": 19, "entity_type": 2, "entity_id": 95, "deltaSeconds": 456, "status": 1}
2023-04-25 01:32:15 +03:00
* }
* },
2023-05-17 01:14:54 +03:00
* {"id": 96, "title": "Простая задача", "project_id": 44, "column_id": 1, "user_id": 19, "description": "Описание простой задачи", "status": 1, "comment_count": 4,
2023-04-25 01:32:15 +03:00
* "taskUsers": {
* {"id": 3, "task_id": 96, "user_id": 3, "fio": "Иванов Иван Иванович", "avatar": "/profileava/m2.png"},
* {"id": 4, "task_id": 96, "user_id": 4, "fio": "Петров Петр Петрович", "avatar": "/profileava/m7.png"},
* },
* "timers": {
* {"id": 13, "created_at": "2023-04-08 02:09:42", "stopped_at": "2023-04-09 16:20:48", "user_id": 19, "entity_type": 2, "entity_id": 96, "deltaSeconds": 654, "status": 1}
2023-04-25 01:32:15 +03:00
* }
* }
* }
* },
2023-05-11 01:18:40 +03:00
* {"id": 2, "title": "Новые задачи", "project_id": 95, "status": 1, "priority": 2,
2023-04-25 01:32:15 +03:00
* "tasks": {
* {"id": 97, "title": "Очень Сложная задача", "project_id": 44, "column_id": 2, "user_id": 19, "description": "Описание простой задачи", "status": 1, "comment_count": 2,
* "taskUsers": {},
* "timers": {}
* },
* {"id": 98, "title": "Очень Простая задача", "project_id": 44, "column_id": 2, "user_id": 19, "description": "Описание очень простой задачи", "status": 1, "comment_count": 3,
* "taskUsers": {},
* "timers": {}
* }
2023-04-25 01:32:15 +03:00
* }
* }
* },
* @OA\Items(
* type="object",
* @OA\Property(
* property="id",
* type="int",
* ),
* @OA\Property(
* property="title",
* type="string",
* ),
* @OA\Property(
* property="project_id",
* type="int",
* ),
* @OA\Property(
* property="status",
* type="int",
* ),
* @OA\Property(
2023-05-11 01:18:40 +03:00
* property="priority",
* type="int",
* ),
* @OA\Property(
2023-04-25 01:32:15 +03:00
* property="tasks",
* ref="#/components/schemas/ProjectTask",
* ),
* ),
*)
*
*/
class ProjectColumn extends \common\models\ProjectColumn
{
}