12345678910111213141516171819202122232425262728 |
- <?php
- namespace app\common\model;
- /**
- * 推广监控统计模型
- * @package app\common\model
- */
- class PromotionMonitorStatistics extends BaseModel
- {
- protected $name = 'promotion_monitor_statistics';
- /**
- * 获取记录
- * @param int $id
- * @param array $with
- * @return static
- */
- public static function detail(int $id, array $with = [])
- {
- return static::get($id, $with);
- }
-
- }
|