Fleafavorites.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 数据层模型
  15. */
  16. class Fleafavorites extends BaseModel {
  17. public $page_info;
  18. /**
  19. * 取单个收藏的内容
  20. * @access public
  21. * @author csdeshang
  22. * @param type $fav_id 收藏ID
  23. * @param type $type 收藏类型
  24. * @param type $member_id 会员ID
  25. * @return boolean
  26. */
  27. public function getOneFleafavorites($fav_id, $type, $member_id) {
  28. if (intval($fav_id) > 0) {
  29. $result = Db::name('fleafavorites')->where('fleafav_id', intval($fav_id))->where('fleafav_type', $type)->where('member_id', $member_id)->field('fleafav_id,member_id,fleafav_type')->find();
  30. return $result;
  31. } else {
  32. return false;
  33. }
  34. }
  35. /**
  36. * 新增收藏
  37. * @access public
  38. * @author csdeshang
  39. * @param array $data 参数内容
  40. * @return bool 布尔类型的返回结果
  41. */
  42. public function addFleafavorites($data) {
  43. $result = Db::name('fleafavorites')->insert($data);
  44. return $result;
  45. }
  46. /**
  47. * 验证是否为当前用户收藏
  48. * @access public
  49. * @author csdeshang
  50. * @param type $fav_id 收藏ID
  51. * @param type $fav_type 收藏类型
  52. * @param type $member_id 会员ID
  53. * @return boolean
  54. */
  55. public function checkFleafavorites($fav_id, $fav_type, $member_id) {
  56. if (intval($fav_id) == 0 || empty($fav_type) || intval($member_id) == 0) {
  57. return true;
  58. }
  59. $result = self::getOneFleafavorites($fav_id, $fav_type, $member_id);
  60. if ($result['member_id'] == $member_id) {
  61. return true;
  62. } else {
  63. return false;
  64. }
  65. }
  66. /**
  67. * 删除
  68. * @access public
  69. * @author csdeshang
  70. * @param type $condition
  71. * @return boolean
  72. */
  73. public function delFleafavorites($condition) {
  74. $result = Db::name('fleafavorites')->where($condition)->delete();
  75. return $result;
  76. }
  77. }