DriverLineOrderCustomSort.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. namespace app\models;
  8. use Yii;
  9. use yii\behaviors\TimestampBehavior;
  10. use yii\db\ActiveRecord;
  11. /**
  12. * This is the model class for table "{{%driver_line_order_custom_sort}}".
  13. *
  14. * @property integer $id
  15. * @property integer $md_id
  16. * @property integer $driver_id
  17. * @property integer $sort
  18. * @property integer $is_delete
  19. * @property integer $created_at
  20. * @property integer $updated_at
  21. *
  22. *
  23. */
  24. class DriverLineOrderCustomSort extends \yii\db\ActiveRecord
  25. {
  26. /**
  27. * @inheritdoc
  28. */
  29. public static function tableName()
  30. {
  31. return '{{%driver_line_order_custom_sort}}';
  32. }
  33. public function behaviors()
  34. {
  35. return [
  36. [
  37. 'class' => TimestampBehavior::class,
  38. ]
  39. ];
  40. }
  41. public function attributeLabels()
  42. {
  43. return [
  44. 'id' => '',
  45. 'md_id' => '',
  46. 'driver_id' => '',
  47. 'sort' => '',
  48. 'is_delete' => '',
  49. 'created_at' => '',
  50. 'updated_at' => '',
  51. ];
  52. }
  53. }