123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace app\common\model\wechat;
- use app\common\model\BaseModel;
- class WechatQrcode extends BaseModel
- {
-
- public static function tablePk(): string
- {
- return 'wechat_qrcode_id';
- }
-
- public static function tableName(): string
- {
- return 'wechat_qrcode';
- }
-
- public function incTicket()
- {
- return self::getDB()->where('wechat_qrcode_id', $this->wechat_qrcode_id)->inc('scan')->update();
- }
- }
|