MerchantMemberLog.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace app\model\merchant;
  3. use app\extra\basic\Model;
  4. /**
  5. * @property integer $id (主键)
  6. * @property integer $agent_id
  7. * @property integer $store_id
  8. * @property integer $uid
  9. * @property string $name
  10. * @property string $mobile
  11. * @property integer $money
  12. * @property integer $type 1下单
  13. * @property integer $status 0失败1成功
  14. * @property string $order_sn
  15. * @property mixed $create_at
  16. */
  17. class MerchantMemberLog extends Model
  18. {
  19. /**
  20. * The connection name for the model.
  21. *
  22. * @var string|null
  23. */
  24. protected $connection = 'mysql';
  25. /**
  26. * The table associated with the model.
  27. *
  28. * @var string
  29. */
  30. protected string $table = "merchant_member_log";
  31. /**
  32. * The primary key associated with the table.
  33. *
  34. * @var string
  35. */
  36. protected string $primaryKey = "id";
  37. /**
  38. * Indicates if the model should be timestamped.
  39. *
  40. * @var bool
  41. */
  42. public bool $timestamps = false;
  43. }