Storemsgread.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 Storemsgread extends BaseModel
  17. {
  18. /**
  19. * 新增店铺纤细阅读
  20. * @access public
  21. * @author csdeshang
  22. * @param array $data 参数内容
  23. * @return bool
  24. */
  25. public function addStoremsgread($data)
  26. {
  27. $data['storemsg_readtime'] = TIMESTAMP;
  28. return Db::name('storemsgread')->insert($data);
  29. }
  30. /**
  31. * 查看店铺消息阅读详细
  32. * @access public
  33. * @author csdeshang
  34. * @param type $condition 条件
  35. * @param type $field 字段
  36. * @return type
  37. */
  38. public function getStoremsgreadInfo($condition, $field = '*')
  39. {
  40. return Db::name('storemsgread')->field($field)->where($condition)->find();
  41. }
  42. /**
  43. * 店铺消息阅读列表
  44. * @access public
  45. * @author csdeshang
  46. * @param array $condition 条件
  47. * @param string $field 字段
  48. * @param string $order 排序
  49. * @return array
  50. */
  51. public function getStoremsgreadList($condition, $field = '*', $order = 'storemsg_readtime desc')
  52. {
  53. return Db::name('storemsgread')->field($field)->where($condition)->order($order)->select()->toArray();
  54. }
  55. /**
  56. * 删除店铺消息阅读记录
  57. * @access public
  58. * @author csdeshang
  59. * @param type $condition 条件
  60. * @return bool
  61. */
  62. public function delStoremsgread($condition)
  63. {
  64. Db::name('storemsgread')->where($condition)->delete();
  65. }
  66. }