PayAisle.php 814 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace plugin\admin\app\model;
  3. use plugin\admin\app\model\Base;
  4. /**
  5. * @property integer $id 主键(主键)
  6. * @property string $name 支付名称
  7. * @property string $title 渠道名称
  8. * @property integer $type 渠道类型
  9. * @property integer $characteristic 支付标识
  10. * @property integer $sort 排序
  11. * @property integer $state 状态
  12. * @property string $img 图片
  13. */
  14. class PayAisle extends Base
  15. {
  16. /**
  17. * The table associated with the model.
  18. *
  19. * @var string
  20. */
  21. protected $table = 'wa_pay_aisle';
  22. /**
  23. * The primary key associated with the table.
  24. *
  25. * @var string
  26. */
  27. protected $primaryKey = 'id';
  28. /**
  29. * Indicates if the model should be timestamped.
  30. *
  31. * @var bool
  32. */
  33. public $timestamps = false;
  34. }