117 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace frontend\modules\api\models\project;
 | |
| 
 | |
| /**
 | |
|  *
 | |
|  * @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(
 | |
|  *     property="priority",
 | |
|  *     type="int",
 | |
|  *     example="1",
 | |
|  *     description="Приоритет колонки"
 | |
|  *  ),
 | |
|  *  @OA\Property(
 | |
|  *     property="tasks",
 | |
|  *     ref="#/components/schemas/ProjectTask",
 | |
|  *  ),
 | |
|  *)
 | |
|  *
 | |
|  * @OA\Schema(
 | |
|  *  schema="ProjectColumnExample",
 | |
|  *  type="array",
 | |
|  *  example={
 | |
|  *     {"id": 1, "title": "Задачи на проверку", "project_id": 95, "status": 1, "priority": 1,
 | |
|  *         "tasks": {
 | |
|  *             {"id": 95, "title": "Сложная задача", "project_id": 44, "column_id": 1, "user_id": 19, "description": "Описание задачи", "status": 1, "comment_count": 3,
 | |
|  *                 "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}
 | |
|  *                 }
 | |
|  *             },
 | |
|  *             {"id": 96, "title": "Простая задача", "project_id": 44, "column_id": 1, "user_id": 19, "description": "Описание простой задачи", "status": 1, "comment_count": 4,
 | |
|  *                 "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}
 | |
|  *                 }
 | |
|  *             }
 | |
|  *         }
 | |
|  *     },
 | |
|  *     {"id": 2, "title": "Новые задачи", "project_id": 95, "status": 1, "priority": 2,
 | |
|  *         "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": {}
 | |
|  *             }
 | |
|  *         }
 | |
|  *     }
 | |
|  *  },
 | |
|  *  @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(
 | |
|  *         property="priority",
 | |
|  *         type="int",
 | |
|  *      ),
 | |
|  *      @OA\Property(
 | |
|  *         property="tasks",
 | |
|  *         ref="#/components/schemas/ProjectTask",
 | |
|  *      ),
 | |
|  *  ),
 | |
|  *)
 | |
|  *
 | |
|  */
 | |
| class ProjectColumn extends \common\models\ProjectColumn
 | |
| {
 | |
| 
 | |
| } | 
