<?php namespace common\models; use Yii; /** * This is the model class for table "gift2_t". * * @property integer $id * @property string $name * @property string $price * @property string $remark * @property integer $total * @property string $created_at * @property string $updated_at */ class Gift2T extends \common\models\Base { /** * @inheritdoc */ public static function tableName() { return 'gift2_t'; } /** * @inheritdoc */ public function rules() { return [ [['name'], 'required'], [['total'], 'integer'], [['created_at', 'updated_at'], 'safe'], [['name'], 'string', 'max' => 100], [['price'], 'string', 'max' => 50], [['remark'], 'string', 'max' => 200], ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'id' => 'ID', 'name' => 'Name', 'price' => 'Price', 'remark' => 'Remark', 'total' => 'Total', 'created_at' => 'Created At', 'updated_at' => 'Updated At', ]; } }