| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use yii\db\ActiveRecord;
- use yii\behaviors\TimestampBehavior;
- use Yii;
- /**
- * This is the model class for table "{{%food_flag}}".
- *
- * @property integer $id
- * @property integer $store_id
- * @property integer $md_id
- * @property integer $status
- * @property string $table_num
- * @property integer $type
- * @property integer $order_id
- * @property integer $user_id
- * @property integer $created_at
- * @property integer $updated_at
- */
- class FoodFlag extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%food_flag}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class,
- 'attributes' => [
- ActiveRecord::EVENT_BEFORE_INSERT => ['created_at'],
- ActiveRecord::EVENT_BEFORE_UPDATE => ['updated_at']
- ]
- ]
- ];
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['md_id', 'store_id', 'type', 'order_id', 'user_id', 'status'], 'integer'],
- [['created_at', 'updated_at', 'table_num'], 'safe']
- ];
- }
- }
|