Arrivalnotice.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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 Arrivalnotice extends BaseModel
  17. {
  18. /**
  19. * 通知列表
  20. * @access public
  21. * @author csdeshang
  22. * @param array $condition 条件
  23. * @param string $field 字段
  24. * @param number $limit 数量限制
  25. * @param string $order 排序
  26. * @return array
  27. */
  28. public function getArrivalNoticeList($condition = array(), $field = '*', $limit = 0, $order = 'arrivalnotice_id desc',$pagesize = '') {
  29. if ($pagesize) {
  30. $result = Db::name('arrivalnotice')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  31. $this->page_info = $result;
  32. return $result->items();
  33. } else {
  34. return Db::name('arrivalnotice')->where($condition)->field($field)->limit($limit)->order($order)->select()->toArray();
  35. }
  36. }
  37. /**
  38. * 单条通知
  39. * @access public
  40. * @author csdeshang
  41. * @param array $condition 查询条件
  42. * @param string $field 字段
  43. * @return type
  44. */
  45. public function getArrivalNoticeInfo($condition, $field = '*') {
  46. return Db::name('arrivalnotice')->where($condition)->field($field)->find();
  47. }
  48. /**
  49. * 通知数量
  50. * @access public
  51. * @author csdeshang
  52. * @param array $condition 条件
  53. * @param string $field 字段
  54. * @param string $order 排序
  55. * @return array
  56. */
  57. public function getArrivalNoticeCount($condition) {
  58. return Db::name('arrivalnotice')->where($condition)->count();
  59. }
  60. /**
  61. * 添加通知
  62. * @access public
  63. * @author csdeshang
  64. * @param array $data 参数内容
  65. * @return bool
  66. */
  67. public function addArrivalNotice($data) {
  68. $data['arrivalnotice_addtime'] = TIMESTAMP;
  69. return Db::name('arrivalnotice')->insertGetId($data);
  70. }
  71. /**
  72. * 修改通知
  73. * @access public
  74. * @author csdeshang
  75. * @param array $data 参数内容
  76. * @return bool
  77. */
  78. public function editArrivalNotice($data, $condition)
  79. {
  80. return Db::name('arrivalnotice')->where($condition)->update($data);
  81. }
  82. /**
  83. * 删除通知
  84. * @access public
  85. * @author csdeshang
  86. * @param array $condition 条件
  87. * @return bool
  88. */
  89. public function delArrivalNotice($condition) {
  90. return Db::name('arrivalnotice')->where($condition)->delete();
  91. }
  92. }