Mbchaintoken.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. /**
  3. * 手机端提货站令牌模型
  4. */
  5. namespace app\common\model;
  6. use think\facade\Db;
  7. /**
  8. * ============================================================================
  9. *
  10. * ============================================================================
  11. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  12. * 网站地址: https://www.valimart.net/
  13. * ----------------------------------------------------------------------------
  14. *
  15. * ============================================================================
  16. * 数据层模型
  17. */
  18. class Mbchaintoken extends BaseModel {
  19. /**
  20. * 查询
  21. * @access public
  22. * @author csdeshang
  23. * @param array $condition 查询条件
  24. * @return array
  25. */
  26. public function getMbchaintokenInfo($condition) {
  27. return Db::name('mbchaintoken')->where($condition)->find();
  28. }
  29. /**
  30. * 获取提货站令牌
  31. * @access public
  32. * @author csdeshang
  33. * @param type $token 令牌
  34. * @return type
  35. */
  36. public function getMbchaintokenInfoByToken($token) {
  37. if (empty($token)) {
  38. return null;
  39. }
  40. return $this->getMbchaintokenInfo(array('chain_token' => $token));
  41. }
  42. /**
  43. * 新增
  44. * @access public
  45. * @author csdeshang
  46. * @param array $data 参数内容
  47. * @return bool 布尔类型的返回结果
  48. */
  49. public function addMbchaintoken($data) {
  50. return Db::name('mbchaintoken')->insertGetId($data);
  51. }
  52. /**
  53. * 删除
  54. * @access public
  55. * @author csdeshang
  56. * @param int $condition 条件
  57. * @return bool 布尔类型的返回结果
  58. */
  59. public function delMbchaintoken($condition) {
  60. return Db::name('mbchaintoken')->where($condition)->delete();
  61. }
  62. }