123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
-
-
- namespace app\common\model\community;
-
-
- use app\common\basics\Models;
-
-
- class CommunityTopic extends Models
- {
-
-
-
-
- public function cate()
- {
- return $this->hasOne(CommunityCategory::class, 'id', 'cid');
- }
-
-
-
-
- public static function decArticleNum($id)
- {
- return self::where([
- ['id', '=', $id],
- ['article_num', '>=', 1]
- ])->dec('article_num')->update();
- }
-
- }
|