13 lines
283 B
PHP
Executable File
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');
|
|
}
|
|
}
|