Comment.php 304 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class Comment extends Model
  5. {
  6. protected $connection = 'mysql';
  7. protected $pk = 'id';
  8. protected $name = 'comment';
  9. public static function total_byuuid($uuid = '')
  10. {
  11. return self::where('technical_uuid',$uuid)->count();
  12. }
  13. }