REAPI/app/merchant/service/BeeService.php

15 lines
264 B
PHP
Raw Normal View History

2024-09-29 15:43:18 +08:00
<?php
namespace app\merchant\service;
use app\core\Service;
class BeeService extends Service
{
public $table="merchant_bee_task";
public function getTaskInfo($mid){
$where['mid'] = $mid;
return $this->db()->where($where)->find();
}
}