InquirerAnswer.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace app\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "inquirer_question".
  6. *
  7. * @property int $id
  8. * @property string $text
  9. * @property string $active доступна
  10. * @property string $show показывать на главной
  11. * @property string $dt_cr
  12. * @property string $dt_pub
  13. * @property string $dt_end
  14. */
  15. class InquirerAnswer extends \yii\db\ActiveRecord
  16. {
  17. /**
  18. * {@inheritdoc}
  19. */
  20. public static function tableName()
  21. {
  22. return 'inquirer_answer';
  23. }
  24. /**
  25. * {@inheritdoc}
  26. */
  27. public function rules()
  28. {
  29. return [
  30. [['text'], 'required'],
  31. [['text', 'type'], 'string'],
  32. [['count'], 'integer'],
  33. ];
  34. }
  35. /**
  36. * {@inheritdoc}
  37. */
  38. public function attributeLabels()
  39. {
  40. return [
  41. 'id' => 'ID',
  42. 'idq' => 'ID Вопроса',
  43. 'text' => 'Ответ',
  44. 'type' => 'тип ответа',
  45. 'count' => 'счётчик',
  46. ];
  47. }
  48. }