| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\models;
- use Yii;
- use yii\behaviors\TimestampBehavior;
- use yii\db\ActiveRecord;
- /**
- * This is the model class for table "{{%driver_line_order_custom_sort}}".
- *
- * @property integer $id
- * @property integer $md_id
- * @property integer $driver_id
- * @property integer $sort
- * @property integer $is_delete
- * @property integer $created_at
- * @property integer $updated_at
- *
- *
- */
- class DriverLineOrderCustomSort extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%driver_line_order_custom_sort}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class,
- ]
- ];
- }
- public function attributeLabels()
- {
- return [
- 'id' => '',
- 'md_id' => '',
- 'driver_id' => '',
- 'sort' => '',
- 'is_delete' => '',
- 'created_at' => '',
- 'updated_at' => '',
- ];
- }
- }
|