SaasSmsScene.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 $orders
  9. * @property string $orders_template
  10. * @property integer $order_submit
  11. * @property string $order_submit_template
  12. * @property integer $order_send
  13. * @property string $order_send_template
  14. * @property integer $order_auto
  15. * @property string $order_auto_template
  16. * @property integer $order_agent
  17. * @property string $order_agent_template
  18. * @property integer $order_cancel
  19. * @property string $order_cancel_template
  20. * @property integer $order_cancel_submit
  21. * @property string $order_cancel_submit_template
  22. * @property integer $order_done
  23. * @property string $order_done_template
  24. * @property mixed $create_at
  25. */
  26. class SaasSmsScene extends Model
  27. {
  28. /**
  29. * The connection name for the model.
  30. *
  31. * @var string|null
  32. */
  33. protected $connection = 'mysql';
  34. /**
  35. * The table associated with the model.
  36. *
  37. * @var string
  38. */
  39. protected string $table = "saas_sms_scene";
  40. /**
  41. * The primary key associated with the table.
  42. *
  43. * @var string
  44. */
  45. protected string $primaryKey = "id";
  46. /**
  47. * Indicates if the model should be timestamped.
  48. *
  49. * @var bool
  50. */
  51. public bool $timestamps = false;
  52. }