123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- /**
- * 微商城评论模型
- *
- *
- *
- *
-
- */
- defined('InShopNC') or exit('Access Invalid!');
- class micro_commentModel extends Model{
- public function __construct(){
- parent::__construct('micro_comment');
- }
- /**
- * 读取列表
- * @param array $condition
- *
- */
- public function getList($condition,$page='',$order='',$field='*'){
- $result = $this->field($field)->where($condition)->page($page)->order($order)->select();
- return $result;
- }
- /**
- * 读取推荐商品列表和用户信息
- *
- */
- public function getListWithUserInfo($condition,$page='',$order='',$field='*'){
- $on = 'micro_comment.comment_member_id = member.member_id';
- $result = $this->table('micro_comment,member')->field($filed)->join('left')->on($on)->where($condition)->page($page)->order($order)->select();
- return $result;
- }
- /**
- * 读取单条记录
- * @param array $condition
- *
- */
- public function getOne($condition){
- $result = $this->where($condition)->find();
- return $result;
- }
- /*
- * 判断是否存在
- * @param array $condition
- *
- */
- public function isExist($condition) {
- $result = $this->getOne($condition);
- if(empty($result)) {
- return FALSE;
- }
- else {
- return TRUE;
- }
- }
- /*
- * 增加
- * @param array $param
- * @return bool
- */
- public function save($param){
- return $this->insert($param);
- }
-
- /*
- * 增加
- * @param array $param
- * @return bool
- */
- public function saveAll($param){
- return $this->insertAll($param);
- }
-
- /*
- * 更新
- * @param array $update
- * @param array $condition
- * @return bool
- */
- public function modify($update, $condition){
- return $this->where($condition)->update($update);
- }
-
- /*
- * 删除
- * @param array $condition
- * @return bool
- */
- public function drop($condition){
- return $this->where($condition)->delete();
- }
-
- }
|