Mbsellertoken.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. /**
  3. * 手机端买家令牌模型
  4. */
  5. namespace app\common\model;
  6. use think\facade\Db;
  7. /**
  8. *
  9. *
  10. * ----------------------------------------------------------------------------
  11. *
  12. * 数据层模型
  13. */
  14. class Mbsellertoken extends BaseModel
  15. {
  16. /**
  17. * 查询
  18. * @access public
  19. * @author csdeshang
  20. * @param array $condition 查询条件
  21. * @return array
  22. */
  23. public function getMbsellertokenInfo($condition)
  24. {
  25. return Db::name('mbsellertoken')->where($condition)->find();
  26. }
  27. /**
  28. * 获取卖家令牌
  29. * @access public
  30. * @author csdeshang
  31. * @param type $token 令牌
  32. * @return type
  33. */
  34. public function getMbsellertokenInfoByToken($token)
  35. {
  36. if (empty($token)) {
  37. return null;
  38. }
  39. return $this->getMbsellertokenInfo(array('seller_token' => $token));
  40. }
  41. /**
  42. * 新增
  43. * @access public
  44. * @author csdeshang
  45. * @param array $data 参数内容
  46. * @return bool 布尔类型的返回结果
  47. */
  48. public function addMbsellertoken($data)
  49. {
  50. return Db::name('mbsellertoken')->insertGetId($data);
  51. }
  52. /**
  53. * 删除
  54. * @access public
  55. * @author csdeshang
  56. * @param int $condition 条件
  57. * @return bool 布尔类型的返回结果
  58. */
  59. public function delMbsellertoken($condition)
  60. {
  61. return Db::name('mbsellertoken')->where($condition)->delete();
  62. }
  63. }