| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace frontend\models;
- use Yii;
- /**
- * This is the model class for table "bit_slide".
- *
- * @property integer $id
- * @property string $create_date
- * @property string $modify_date
- * @property string $image_path
- * @property integer $language
- * @property string $other
- * @property string $title
- * @property string $url
- */
- class Slide extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'bit_slide';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['create_date', 'modify_date'], 'safe'],
- [['language'], 'required'],
- [['language'], 'integer'],
- [['image_path', 'other', 'title', 'url'], 'string', 'max' => 255],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'create_date' => 'Create Date',
- 'modify_date' => 'Modify Date',
- 'image_path' => 'Image Path',
- 'language' => 'Language',
- 'other' => 'Other',
- 'title' => 'Title',
- 'url' => 'Url',
- ];
- }
- }
|