You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

50 lines
913 B

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. use yii\db\ActiveRecord;
  5. /**
  6. * This is the model class for table "order_extra_info".
  7. *
  8. * @property integer $id
  9. * @property integer $order_id
  10. * @property string $hotel_price
  11. * @property string $gate_price
  12. */
  13. class OrderExtraInfo extends ActiveRecord
  14. {
  15. /**
  16. * @inheritdoc
  17. */
  18. public static function tableName()
  19. {
  20. return 'order_extra_info';
  21. }
  22. /**
  23. * @inheritdoc
  24. */
  25. public function rules()
  26. {
  27. return [
  28. [['order_id'], 'integer'],
  29. [['hotel_price', 'gate_price'], 'string', 'max' => 20],
  30. ];
  31. }
  32. /**
  33. * @inheritdoc
  34. */
  35. public function attributeLabels()
  36. {
  37. return [
  38. 'id' => 'ID',
  39. 'order_id' => 'Order ID',
  40. 'hotel_price' => 'Hotel Price',
  41. 'gate_price' => 'Gate Price',
  42. ];
  43. }
  44. }