Mbusertoken.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. /**
  3. * 手机端买家令牌模型
  4. */
  5. namespace app\common\model;
  6. use think\facade\Db;
  7. /**
  8. * ============================================================================
  9. * DSMall多用户商城
  10. * ============================================================================
  11. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  12. * 网站地址: http://www.csdeshang.com
  13. * ----------------------------------------------------------------------------
  14. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  15. * 不允许对程序代码以任何形式任何目的的再发布。
  16. * ============================================================================
  17. * 数据层模型
  18. */
  19. class Mbusertoken extends BaseModel {
  20. /**
  21. * 查询
  22. * @access public
  23. * @author csdeshang
  24. * @param array $condition 查询条件
  25. * @return array
  26. */
  27. public function getMbusertokenInfo($condition) {
  28. return Db::name('mbusertoken')->where($condition)->find();
  29. }
  30. /**
  31. * 查询
  32. * @access public
  33. * @author csdeshang
  34. * @param type $token 令牌
  35. * @return type
  36. */
  37. public function getMbusertokenInfoByToken($token) {
  38. if (empty($token)) {
  39. return null;
  40. }
  41. return $this->getMbusertokenInfo(array('member_token' => $token));
  42. }
  43. /**
  44. * 编辑
  45. * @access public
  46. * @author csdeshang
  47. * @param type $token 令牌
  48. * @param type $openId ID
  49. * @return type
  50. */
  51. public function editMemberOpenId($token, $openId) {
  52. return Db::name('mbusertoken')->where(array('member_token' => $token,))->update(array('member_openid' => $openId,));
  53. }
  54. /**
  55. * 新增
  56. * @access public
  57. * @author csdeshang
  58. * @param array $data 参数内容
  59. * @return bool 布尔类型的返回结果
  60. */
  61. public function addMbusertoken($data) {
  62. return Db::name('mbusertoken')->insertGetId($data);
  63. }
  64. /**
  65. * 删除
  66. * @access public
  67. * @author csdeshang
  68. * @param int $condition 条件
  69. * @return bool 布尔类型的返回结果
  70. */
  71. public function delMbusertoken($condition) {
  72. return Db::name('mbusertoken')->where($condition)->delete();
  73. }
  74. }
  75. ?>