| Current Path : /var/www/html/slaas/backend/modules/participation/models/ |
| Current File : /var/www/html/slaas/backend/modules/participation/models/ParticipationNationalMarksDetails.php |
<?php
namespace backend\modules\participation\models;
use Yii;
/**
* This is the model class for table "participation_national_marks_details".
*
* @property int $mark_id
* @property int $mark_parent_id
* @property int $mark_criteria_id
* @property string $mark_value
* @property string $mark_comment
* @property string $created_at
* @property int $created_by
* @property string $updated_at
* @property int $updated_by
*/
class ParticipationNationalMarksDetails extends \yii\db\ActiveRecord {
/**
* {@inheritdoc}
*/
public static function tableName() {
return 'participation_national_marks_details';
}
/**
* {@inheritdoc}
*/
public function rules() {
return [
[['mark_value', 'mark_comment', 'mark_parent_id', 'mark_criteria_id', 'created_by', 'updated_by', 'created_at', 'updated_at'], 'safe'],
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels() {
return [
'mark_id' => 'Mark ID',
'mark_parent_id' => 'Mark Parent ID',
'mark_criteria_id' => 'Mark Criteria ID',
'mark_value' => 'Mark Value',
'mark_comment' => 'Mark Comment',
'created_at' => 'Created At',
'created_by' => 'Created By',
'updated_at' => 'Updated At',
'updated_by' => 'Updated By',
];
}
}