106 lines
3.4 KiB
PHP
106 lines
3.4 KiB
PHP
<?php
|
|
namespace app\common\model;
|
|
use think\facade\Db;
|
|
|
|
/**
|
|
* ============================================================================
|
|
* 联课教育商城系统
|
|
* ============================================================================
|
|
* 版权所有 2022 刻羽互动科技有限公司,并保留所有权利。
|
|
* 网站地址: http://www.o1h.cn
|
|
* ----------------------------------------------------------------------------
|
|
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
|
|
* 不允许对程序代码以任何形式任何目的的再发布。
|
|
* ============================================================================
|
|
* 数据层模型
|
|
*/
|
|
class Article extends BaseModel
|
|
{
|
|
public $page_info;
|
|
/**
|
|
* 获取文章列表
|
|
* @access public
|
|
* @author o1h.cn
|
|
* @param type $condition
|
|
* @param type $pagesize
|
|
* @param type $order
|
|
* @return type
|
|
*/
|
|
public function getArticleList($condition,$pagesize='',$order='article_sort asc,article_time desc'){
|
|
if ($pagesize) {
|
|
$result = Db::name('article')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
|
|
$this->page_info = $result;
|
|
return $result->items();
|
|
} else {
|
|
return Db::name('article')->where($condition)->order($order)->limit(10)->select()->toArray();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 连接查询列表
|
|
* @access public
|
|
* @author o1h.cn
|
|
* @param type $where
|
|
* @param type $limit
|
|
* @param type $field
|
|
* @param type $order
|
|
* @return type
|
|
*/
|
|
public function getJoinArticleList($where,$limit=0,$field='*',$order='article.article_sort'){
|
|
$result = Db::name('article')->alias('article')->join('articleclass article_class','article.ac_id=article_class.ac_id','LEFT')->field($field)->where($where)->limit($limit)->order($order)->select()->toArray();
|
|
return $result;
|
|
}
|
|
|
|
|
|
/**
|
|
* 取单个内容
|
|
* @access public
|
|
* @author o1h.cn
|
|
* @param int $condition
|
|
* @return array 数组类型的返回结果
|
|
*/
|
|
public function getOneArticle($condition){
|
|
$result = Db::name('article')->where($condition)->find();
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* 新增
|
|
* @access public
|
|
* @author o1h.cn
|
|
* @param array $data 参数内容
|
|
* @return bool 布尔类型的返回结果
|
|
*/
|
|
public function addArticle($data){
|
|
$result = Db::name('article')->insertGetId($data);
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* 更新信息
|
|
* @access public
|
|
* @author o1h.cn
|
|
* @param array $data 更新数据
|
|
* @return bool 布尔类型的返回结果
|
|
*/
|
|
public function editArticle($data,$article_id){
|
|
$result = Db::name('article')->where("article_id=".$article_id)->update($data);
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* 删除
|
|
* @access public
|
|
* @author o1h.cn
|
|
* @param int $id 记录ID
|
|
* @return bool 布尔类型的返回结果
|
|
*/
|
|
public function delArticle($id){
|
|
return Db::name('article')->where("article_id=".$id)->delete();
|
|
}
|
|
|
|
public function getAllArticle($condition){
|
|
$result = Db::name('article')->where($condition)->limit(10)->order('article_sort asc,article_time desc')->select()->toArray();
|
|
return $result;
|
|
}
|
|
} |