Rechargecard.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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 Rechargecard extends BaseModel
  17. {
  18. public $page_info;
  19. /**
  20. * 获取充值卡列表
  21. * @access public
  22. * @author csdeshang
  23. * @param type $condition 查询条件
  24. * @param type $pagesize 分页
  25. * @param type $limit 限制
  26. * @return type
  27. */
  28. public function getRechargecardList($condition, $pagesize = 20, $limit = 0) {
  29. $order = 'rc_id desc';
  30. if ($pagesize) {
  31. $res = Db::name('rechargecard')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  32. $this->page_info = $res;
  33. return $res->items();
  34. } else {
  35. return Db::name('rechargecard')->where($condition)->order($order)->limit($limit)->select()->toArray();
  36. }
  37. }
  38. /**
  39. * 通过卡号获取单条充值卡数据
  40. * @access public
  41. * @author csdeshang
  42. * @param type $sn 卡号
  43. * @return type
  44. */
  45. public function getRechargecardBySN($sn)
  46. {
  47. return Db::name('rechargecard')->where(array(
  48. 'rc_sn' => (string) $sn,
  49. ))->find();
  50. }
  51. /**
  52. * 设置充值卡为已使用
  53. * @access public
  54. * @author csdeshang
  55. * @param type $id 表字增ID
  56. * @param type $memberId 会员ID
  57. * @param type $memberName 会员名称
  58. * @return type
  59. */
  60. public function setRechargecardUsedById($id, $memberId, $memberName)
  61. {
  62. return Db::name('rechargecard')->where(array('rc_id' => (string) $id,))->update(array('rc_tsused' => TIMESTAMP, 'rc_state' => 1, 'member_id' => $memberId, 'member_name' => $memberName,));
  63. }
  64. /**
  65. * 通过ID删除充值卡(自动添加未使用标记)
  66. * @access public
  67. * @author csdeshang
  68. * @param type $id 表自增id
  69. * @return type
  70. */
  71. public function delRechargecard($condition)
  72. {
  73. return Db::name('rechargecard')->where($condition)->delete();
  74. }
  75. /**
  76. * 通过给定的卡号数组过滤出来不能被新插入的卡号(卡号存在的)
  77. * @access public
  78. * @author csdeshang
  79. * @param array $sns 卡号数组
  80. * @return type
  81. */
  82. public function getOccupiedRechargecardSNsBySNs(array $sns)
  83. {
  84. $array = Db::name('rechargecard')->field('rc_sn')->where('rc_sn','in',$sns)->select()->toArray();
  85. $data = array();
  86. foreach ((array) $array as $v) {
  87. $data[] = $v['rc_sn'];
  88. }
  89. return $data;
  90. }
  91. /**
  92. * 获取充值卡数量
  93. * @access public
  94. * @author csdeshang
  95. * @param type $condition 条件
  96. * @return type
  97. */
  98. public function getRechargecardCount($condition) {
  99. return Db::name('rechargecard')->where($condition)->count();
  100. }
  101. /**
  102. * 保存充值卡
  103. * @access public
  104. * @author csdeshang
  105. * @param array $data 参数内容
  106. * @return boolean
  107. */
  108. public function addRechargecardAll($data) {
  109. return Db::name('rechargecard')->insertAll($data);
  110. }
  111. }