| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace frontend\models;
- use Yii;
- /**
- * This is the model class for table "bit_xcoqproject".
- *
- * @property integer $id
- * @property string $create_date
- * @property string $modify_date
- * @property string $content
- * @property string $title
- */
- class Xcoqproject extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'bit_xcoqproject';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['create_date', 'modify_date'], 'safe'],
- [['content'], 'string', 'max' => 3000],
- [['title'], 'string', 'max' => 255],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'create_date' => 'Create Date',
- 'modify_date' => 'Modify Date',
- 'content' => 'Content',
- 'title' => 'Title',
- ];
- }
- }
|