| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.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}}".
- *
- * @property integer $id
- */
- class DriverLine extends \yii\db\ActiveRecord
- {
- const STATUS_WAIT = 0;
- const STATUS_DOING = 101;
- const STATUS_FINISH = 1;
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%driver_line}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class,
- ]
- ];
- }
- }
|