ApplySeller.php 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2021 https://www.yiovo.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
  8. // +----------------------------------------------------------------------
  9. // | Author: 萤火科技 <admin@yiovo.com>
  10. // +----------------------------------------------------------------------
  11. declare (strict_types = 1);
  12. namespace app\common\model;
  13. /**
  14. * 配送模板模型
  15. * Class Delivery
  16. * @package app\common\model
  17. */
  18. class ApplySeller extends BaseModel
  19. {
  20. // 定义表名
  21. protected $name = 'apply_seller';
  22. // 定义主键
  23. protected $pk = 'id';
  24. public static function countCommer($where){
  25. return self::where($where)->count('id');
  26. }
  27. }