You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.1 KiB
66 lines
1.1 KiB
2 months ago
|
<?php
|
||
|
namespace app\admin\model;
|
||
|
|
||
|
use app\BaseModel;
|
||
|
use think\Model;
|
||
|
|
||
|
|
||
|
|
||
|
class WxUpload extends BaseModel
|
||
|
{
|
||
|
//定义表名
|
||
|
protected $name = 'massage_wx_upload';
|
||
|
|
||
|
protected $resultSetType = 'collection';
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @author chenniang
|
||
|
* @DataTime: 2020-03-18 12:23
|
||
|
* @功能说明:查找配置
|
||
|
*/
|
||
|
public function settingInfo($dis,$field='*'){
|
||
|
|
||
|
$data = $this->where($dis)->find();
|
||
|
|
||
|
if(empty($data)){
|
||
|
|
||
|
$this->insert($dis);
|
||
|
}
|
||
|
|
||
|
return $this->where($dis)->field($field)->find()->toArray();
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @author chenniang
|
||
|
* @DataTime: 2020-06-08 18:49
|
||
|
* @功能说明:添加
|
||
|
*/
|
||
|
public function settingAdd($data){
|
||
|
|
||
|
$res = $this->insert($data);
|
||
|
|
||
|
return $res;
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @author chenniang
|
||
|
* @DataTime: 2020-03-18 12:24
|
||
|
* @功能说明:配置编辑
|
||
|
*/
|
||
|
public function settingUpdate($dis,$data){
|
||
|
|
||
|
$data['app_id'] = !empty($data['app_id'])?implode(',',$data['app_id']):'';
|
||
|
|
||
|
$res = $this->where($dis)->update($data);
|
||
|
|
||
|
return $res;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|