Storemsg.php 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 Storemsg extends BaseModel
  17. {
  18. public $page_info;
  19. /**
  20. * 新增店铺消息
  21. * @access public
  22. * @author csdeshang
  23. * @param array $data 参数内容
  24. * @return type
  25. */
  26. public function addStoremsg($data) {
  27. $data['storemsg_addtime'] = TIMESTAMP;
  28. $storemsg_id = Db::name('storemsg')->insertGetId($data);
  29. return $storemsg_id;
  30. }
  31. /**
  32. * 更新店铺消息表
  33. * @access public
  34. * @author csdeshang
  35. * @param array $condition 条件
  36. * @param array $update 更新数据
  37. * @return bool
  38. */
  39. public function editStoremsg($condition, $update) {
  40. return Db::name('storemsg')->where($condition)->update($update);
  41. }
  42. /**
  43. * 查看店铺消息详细
  44. * @access public
  45. * @author csdeshang
  46. * @param unknown $condition 条件
  47. * @param string $field 字段
  48. * @return bool
  49. */
  50. public function getStoremsgInfo($condition, $field = '*') {
  51. return Db::name('storemsg')->field($field)->where($condition)->find();
  52. }
  53. /**
  54. * 店铺消息列表
  55. * @access public
  56. * @author csdeshang
  57. * @param type $condition 条件
  58. * @param type $field 字段
  59. * @param type $pagesize 分页
  60. * @param type $order 排序
  61. * @return type
  62. */
  63. public function getStoremsgList($condition, $field = '*', $pagesize = '0', $order = 'storemsg_id desc') {
  64. $return =Db::name('storemsg')->field($field)->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  65. $this->page_info=$return;
  66. return $return->items();
  67. }
  68. /**
  69. * 计算消息数量
  70. * @access public
  71. * @author csdeshang
  72. * @param array $condition 条件
  73. * @return int
  74. */
  75. public function getStoremsgCount($condition) {
  76. return Db::name('storemsg')->where($condition)->count();
  77. }
  78. /**
  79. * 删除店铺消息
  80. * @access public
  81. * @author csdeshang
  82. * @param type $condition 条件
  83. * @return bool
  84. */
  85. public function delStoremsg($condition) {
  86. Db::name('storemsg')->where($condition)->delete();
  87. }
  88. }