Blame view

common/models/Termin.php 756 Bytes
b507d689   andryeyev   Итерация 1 (Терми...
1
2
3
4
5
6
7
8
9
10
  <?php
  
  namespace common\models;
  
  use Yii;
  
  /**
   * This is the model class for table "termin".
   *
   * @property integer $termin_id
b507d689   andryeyev   Итерация 1 (Терми...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
   * @property integer $termin_type_id
   * @property integer $page_id
   */
  class Termin extends \yii\db\ActiveRecord
  {
      /**
       * @inheritdoc
       */
      public static function tableName()
      {
          return 'termin';
      }
  
      /**
       * @inheritdoc
       */
      public function rules()
      {
          return [
b427543e   andryeyev   Итерация 2 (рекур...
30
              [['termin_type_id', 'page_id'], 'integer']
b507d689   andryeyev   Итерация 1 (Терми...
31
32
33
34
35
36
37
38
39
40
          ];
      }
  
      /**
       * @inheritdoc
       */
      public function attributeLabels()
      {
          return [
              'termin_id' => 'Termin ID',
b507d689   andryeyev   Итерация 1 (Терми...
41
42
43
44
45
              'termin_type_id' => 'Termin Type ID',
              'page_id' => 'Page ID',
          ];
      }
  }