SaasSmsScene.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace app\model\saas;
  3. use app\extra\basic\Model;
  4. /**
  5. * @property integer $id (主键)
  6. * @property integer $agent_id 代理id
  7. * @property integer $store_id 店铺id
  8. * @property integer $order
  9. * @property integer $order_submit
  10. * @property integer $order_send
  11. * @property integer $order_auto
  12. * @property integer $order_agent
  13. * @property integer $order_cancel
  14. * @property integer $order_cancel_submit
  15. * @property integer $order_done
  16. * @property mixed $create_at
  17. */
  18. class SaasSmsScene extends Model
  19. {
  20. /**
  21. * The connection name for the model.
  22. *
  23. * @var string|null
  24. */
  25. protected $connection = 'mysql';
  26. /**
  27. * The table associated with the model.
  28. *
  29. * @var string
  30. */
  31. protected string $table = "saas_sms_scene";
  32. /**
  33. * The primary key associated with the table.
  34. *
  35. * @var string
  36. */
  37. protected string $primaryKey = "id";
  38. /**
  39. * Indicates if the model should be timestamped.
  40. *
  41. * @var bool
  42. */
  43. public bool $timestamps = false;
  44. }