1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace app\models\entity;
- use Yii;
- /**
- * @property int id
- * @property int task_id
- * @property int phase_number
- * @property int message
- * @property int x
- * @property int y
- * @property int z
- */
- class phase extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
-
- public static function tableName()
- {
- return 'phase';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- //[['name', 'uuid'], 'required'],
- //[['name', 'uuid'], 'string', 'max' => 255],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'task_id' => 'Ид команды',
- 'phase_number' => 'Номер этапа',
- 'message' => 'Сообщение',
- 'x' => 'Координата x',
- 'y' => 'Координата y',
- 'z' => 'Координата z',
- ];
- }
- }
|