34 lines
585 B
PHP
34 lines
585 B
PHP
<?php
|
|
|
|
namespace app\merchant\service;
|
|
|
|
use app\core\Service;
|
|
use think\admin\extend\CodeExtend;
|
|
|
|
/**
|
|
* 商户通道服务
|
|
* Class ProjectService
|
|
* @package app\merchant\service
|
|
*/
|
|
class ProvinceService extends Service
|
|
{
|
|
/**
|
|
* 设置默认操作表
|
|
* @var string
|
|
*/
|
|
public $table = 'hf_province';
|
|
|
|
# 获取商户信息
|
|
public function getInfo($name)
|
|
{
|
|
$where = 'name like("%'.$name.'%")';
|
|
|
|
$data = $this->db()->whereRaw($where)->find();
|
|
|
|
if ($data) {
|
|
return $data['code'];
|
|
}
|
|
|
|
return false;
|
|
}
|
|
} |