REAPI/app/merchant/service/BeeService.php
2024-09-29 15:43:18 +08:00

15 lines
264 B
PHP

<?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();
}
}