Storemsgsetting.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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 Storemsgsetting extends BaseModel
  17. {
  18. public $page_info;
  19. /**
  20. * 店铺消息接收设置列表
  21. * @access public
  22. * @author csdeshang
  23. * @param type $condition 条件
  24. * @param type $field 字段
  25. * @param type $key 键值
  26. * @param type $pagesize 分页
  27. * @param type $order 排序
  28. * @return type
  29. */
  30. public function getStoremsgsettingList($condition, $field = '*', $key = '', $pagesize = 0, $order = 'storemt_code asc') {
  31. if($pagesize){
  32. $res=Db::name('storemsgsetting')->field($field)->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  33. $this->page_info=$res;
  34. $result= $res->items();
  35. }else{
  36. $result= Db::name('storemsgsetting')->field($field)->where($condition)->order($order)->select()->toArray();
  37. }
  38. return ds_change_arraykey($result,$key);
  39. }
  40. /**
  41. * 店铺消息接收设置详细
  42. * @access public
  43. * @author csdeshang
  44. * @param type $condition 条件
  45. * @param type $field 字段
  46. * @return type
  47. */
  48. public function getStoremsgsettingInfo($condition, $field = '*') {
  49. return Db::name('storemsgsetting')->field($field)->where($condition)->find();
  50. }
  51. /**
  52. * 添加店铺模板接收设置
  53. * @access public
  54. * @author csdeshang
  55. * @param array $data 新增数据
  56. * @return bool
  57. */
  58. public function addStoremsgsetting($data) {
  59. return Db::name('storemsgsetting')->insert($data);
  60. }
  61. /**
  62. * 编辑店铺模板接收设置
  63. * @access public
  64. * @author csdeshang
  65. * @param array $data 更新数据
  66. * @return bool
  67. */
  68. public function editStoremsgsetting($data, $condition) {
  69. return Db::name('storemsgsetting')->where($condition)->update($data);
  70. }
  71. }