SaasOrderDetail.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. namespace app\model\saas;
  3. use app\extra\basic\Model;
  4. /**
  5. * @property integer $id (主键)
  6. * @property string $order_sn
  7. * @property integer $uuid
  8. * @property integer $shop_id
  9. * @property string $name 文件名称
  10. * @property integer $total_page
  11. * @property integer $page 页数
  12. * @property integer $start_page 起始页
  13. * @property integer $end_page 结束页面
  14. * @property integer $color 颜色
  15. * @property string $paper_size 纸张
  16. * @property integer $duplex 单双面1单面2双面
  17. * @property integer $direction 1
  18. * @property integer $number 打印份数
  19. * @property integer $money 金额
  20. * @property string $path 文件
  21. * @property string $old_path
  22. * @property string $extension
  23. * @property float $discount 折扣
  24. * @property integer $source 1文档2复印
  25. * @property integer $extra_money 额外加价
  26. * @property integer $single_money 单价
  27. * @property integer $single_id 单价ID
  28. * @property string $icon
  29. * @property integer $status
  30. * @property integer $pay_status 支付状态
  31. * @property integer $refund_status 退款状态
  32. * @property mixed $refund_at
  33. * @property string $print_name
  34. * @property string $view_key
  35. * @property string $job
  36. * @property mixed $create_at
  37. */
  38. class SaasOrderDetail extends Model
  39. {
  40. /**
  41. * The connection name for the model.
  42. *
  43. * @var string|null
  44. */
  45. protected $connection = 'mysql';
  46. /**
  47. * The table associated with the model.
  48. *
  49. * @var string
  50. */
  51. protected string $table = "saas_order_detail";
  52. /**
  53. * The primary key associated with the table.
  54. *
  55. * @var string
  56. */
  57. protected string $primaryKey = "id";
  58. /**
  59. * Indicates if the model should be timestamped.
  60. *
  61. * @var bool
  62. */
  63. public bool $timestamps = false;
  64. }