87 lines
2.8 KiB
PHP
87 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
use think\facade\Db;
|
|
|
|
|
|
/**
|
|
* ============================================================================
|
|
* 联课教育商城系统
|
|
* ============================================================================
|
|
* 版权所有 2022 刻羽互动科技有限公司,并保留所有权利。
|
|
* 网站地址: http://www.o1h.cn
|
|
* ----------------------------------------------------------------------------
|
|
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
|
|
* 不允许对程序代码以任何形式任何目的的再发布。
|
|
* ============================================================================
|
|
* 门店数据层模型
|
|
*/
|
|
class Entityshop extends BaseModel {
|
|
|
|
/**
|
|
* 读取地址列表
|
|
* @author o1h.cn
|
|
* @param array $condition 查询条件
|
|
* @param type $order 排序
|
|
* @return array 数组格式的返回结果
|
|
*/
|
|
public function getEntityshopList($condition, $pagesize='', $limit = 0, $order = 'entityshop_id desc') {
|
|
if ($pagesize) {
|
|
$result = Db::name('entityshop')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
|
|
$this->page_info = $result;
|
|
return $result->items();
|
|
} else {
|
|
$result = Db::name('entityshop')->where($condition)->order($order)->limit($limit)->select()->toArray();
|
|
return $result;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 新增地址
|
|
* @author o1h.cn
|
|
* @param array $data 参数内容
|
|
* @return bool 布尔类型的返回结果
|
|
*/
|
|
public function addEntityshop($data) {
|
|
return Db::name('entityshop')->insertGetId($data);
|
|
}
|
|
|
|
/**
|
|
* 取单个地址
|
|
* @author o1h.cn
|
|
* @param int $id 地址ID
|
|
* @return array 数组类型的返回结果
|
|
*/
|
|
public function getOneEntityshop($condition) {
|
|
$result = Db::name('entityshop')->where($condition)->find();
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* 更新地址信息
|
|
* @author o1h.cn
|
|
* @param array $data 更新数据
|
|
* @param array $condition 更新条件
|
|
* @return bool 布尔类型的返回结果
|
|
*/
|
|
public function editEntityshop($condition, $data) {
|
|
return Db::name('entityshop')->where($condition)->update($data);
|
|
}
|
|
|
|
/**
|
|
* 删除地址
|
|
* @author o1h.cn
|
|
* @param array $condition记录ID
|
|
* @return bool 布尔类型的返回结果
|
|
*/
|
|
public function delEntityshop($condition) {
|
|
$entityshop = $this->getOneEntityshop($condition);
|
|
//删除友情链接图片
|
|
@unlink(BASE_UPLOAD_PATH . DIRECTORY_SEPARATOR . DIR_HOME . DIRECTORY_SEPARATOR . 'entityshop' . DIRECTORY_SEPARATOR . $entityshop['entityshop_pic']);
|
|
return Db::name('entityshop')->where($condition)->delete();
|
|
}
|
|
|
|
}
|
|
|
|
?>
|