SaasOrder.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. namespace app\model\saas;
  3. use app\extra\basic\Model;
  4. /**
  5. * @property integer $id (主键)
  6. * @property integer $uuid
  7. * @property integer $agent_id 代理id
  8. * @property integer $store_id 店铺id
  9. * @property string $order_id
  10. * @property integer $product_id 商品ID
  11. * @property string $product_name
  12. * @property string $username
  13. * @property string $code
  14. * @property string $mobile
  15. * @property string $region
  16. * @property string $address
  17. * @property integer $status
  18. * @property string $express_id 顺丰订单id
  19. * @property integer $is_send 1已发送
  20. * @property integer $is_auto 1自动呼叫快递
  21. * @property string $remark
  22. * @property mixed $create_at
  23. */
  24. class SaasOrder extends Model
  25. {
  26. /**
  27. * The connection name for the model.
  28. *
  29. * @var string|null
  30. */
  31. protected $connection = 'mysql';
  32. /**
  33. * The table associated with the model.
  34. *
  35. * @var string
  36. */
  37. protected string $table = "saas_order";
  38. /**
  39. * The primary key associated with the table.
  40. *
  41. * @var string
  42. */
  43. protected string $primaryKey = "id";
  44. /**
  45. * Indicates if the model should be timestamped.
  46. *
  47. * @var bool
  48. */
  49. public bool $timestamps = false;
  50. }