PromotionMonitorStatistics.php 439 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace app\common\model;
  3. /**
  4. * 推广监控统计模型
  5. * @package app\common\model
  6. */
  7. class PromotionMonitorStatistics extends BaseModel
  8. {
  9. protected $name = 'promotion_monitor_statistics';
  10. /**
  11. * 获取记录
  12. * @param int $id
  13. * @param array $with
  14. * @return static
  15. */
  16. public static function detail(int $id, array $with = [])
  17. {
  18. return static::get($id, $with);
  19. }
  20. }