Mbchaintoken.php 1.7 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. * ============================================================================
  15. * 数据层模型
  16. */
  17. class Mbchaintoken extends BaseModel
  18. {
  19. /**
  20. * 查询
  21. * @access public
  22. * @author csdeshang
  23. * @param array $condition 查询条件
  24. * @return array
  25. */
  26. public function getMbchaintokenInfo($condition)
  27. {
  28. return Db::name('mbchaintoken')->where($condition)->find();
  29. }
  30. /**
  31. * 获取提货站令牌
  32. * @access public
  33. * @author csdeshang
  34. * @param type $token 令牌
  35. * @return type
  36. */
  37. public function getMbchaintokenInfoByToken($token)
  38. {
  39. if (empty($token)) {
  40. return null;
  41. }
  42. return $this->getMbchaintokenInfo(array('chain_token' => $token));
  43. }
  44. /**
  45. * 新增
  46. * @access public
  47. * @author csdeshang
  48. * @param array $data 参数内容
  49. * @return bool 布尔类型的返回结果
  50. */
  51. public function addMbchaintoken($data)
  52. {
  53. return Db::name('mbchaintoken')->insertGetId($data);
  54. }
  55. /**
  56. * 删除
  57. * @access public
  58. * @author csdeshang
  59. * @param int $condition 条件
  60. * @return bool 布尔类型的返回结果
  61. */
  62. public function delMbchaintoken($condition)
  63. {
  64. return Db::name('mbchaintoken')->where($condition)->delete();
  65. }
  66. }