2019-09-06 23:53:10 +08:00

13 lines
283 B
PHP
Executable File

<?php
namespace wstmart\common\model;
/**
* ============================================================================
* 广告类
*/
class Ads extends Base{
public function recordClick(){
$id = (int)input('id');
return $this->where("adId=$id")->setInc('adClickNum');
}
}