1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /**
- * 店铺动态评论
- *
- *
- *
- *
-
- */
- defined('InShopNC') or exit('Access Invalid!');
- class store_sns_commentModel extends Model {
- public function __construct(){
- parent::__construct('store_sns_comment');
- }
- /**
- * 店铺动态评论列表
- *
- * @param array $condition
- * @param string $field
- * @param string $order
- * @param int $limit
- * @param int $page
- * @return array
- */
- public function getStoreSnsCommentList($condition, $field = '*', $order = 'scomm_id desc', $limit = 0, $page = 0) {
- return $this->where($condition)->field($field)->order($order)->limit($limit)->page($page)->select();
- }
-
- /**
- * 店铺评论数量
- * @param array $condition
- * @return array
- */
- public function getStoreSnsCommentCount($condition) {
- return $this->where($condition)->count();
- }
-
- /**
- * 获取单条评论
- *
- * @param array $condition
- * @param string $field
- * @return array
- */
- public function getStoreSnsCommentInfo($condition, $field = '*') {
- return $this->where($condition)->field($field)->find();
- }
-
- /**
- * 保存店铺评论
- *
- * @param array $insert
- * @return boolean
- */
- public function saveStoreSnsComment($insert) {
- return $this->insert($insert);
- }
-
- public function editStoreSnsComment($update, $condition) {
- return $this->where($condition)->update($update);
- }
- /**
- * 删除店铺动态评论
- *
- * @param array $condition
- * @return boolean
- */
- public function delStoreSnsComment($condition) {
- return $this->where($condition)->delete();
- }
- }
|