StoreBindLog.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /**
  3. * 厦门云联储网络科技有限公司
  4. * https://www.baokuaiyun.com
  5. * Copyright (c) 2023 爆块云 All rights reserved.
  6. */
  7. namespace app\models;
  8. /**
  9. * This is the model class for table "{{%store_bind_log}}".
  10. *
  11. * @property int $id
  12. * @property int $order_id
  13. * @property int $saas_id
  14. * @property int $new_store_id
  15. * @property int $old_store_id
  16. * @property int $bind_time
  17. */
  18. class StoreBindLog extends \yii\db\ActiveRecord
  19. {
  20. /**
  21. * @inheritdoc
  22. */
  23. public static function tableName()
  24. {
  25. return '{{%store_bind_log}}';
  26. }
  27. /**
  28. * @inheritdoc
  29. */
  30. public function rules()
  31. {
  32. return [
  33. [['id', 'order_id', 'saas_id', 'new_store_id', 'old_store_id', 'bind_time'], 'integer']
  34. ];
  35. }
  36. /**
  37. * @inheritdoc
  38. */
  39. public function attributeLabels()
  40. {
  41. return [
  42. 'id' => "ID主键",
  43. 'order_id' => "订单ID",
  44. 'saas_id' => "联盟ID",
  45. 'new_store_id' => "店铺ID",
  46. 'old_store_id' => "店铺Id",
  47. 'bind_time' => "绑定时间",
  48. ];
  49. }
  50. }