Membermsgsetting.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 Membermsgsetting extends BaseModel
  17. {
  18. public $page_info;
  19. /**
  20. * 用户消息模板列表
  21. * @access public
  22. * @author csdeshang
  23. * @param array $condition 条件
  24. * @param string $field 字段
  25. * @param number $pagesize 分页
  26. * @param string $order 排序
  27. * @return array
  28. */
  29. public function getMembermsgsettingList($condition, $field = '*', $pagesize = 0, $order = 'membermt_code asc') {
  30. if($pagesize){
  31. $result= Db::name('membermsgsetting')->field($field)->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  32. $this->page_info=$result;
  33. return $result->items();
  34. }else{
  35. return Db::name('membermsgsetting')->field($field)->where($condition)->order($order)->select()->toArray();
  36. }
  37. }
  38. /**
  39. * 用户消息模板详细信息
  40. * @access public
  41. * @author csdeshang
  42. * @param array $condition 条件
  43. * @param string $field 字段
  44. * @return array
  45. */
  46. public function getMembermsgsettingInfo($condition, $field = '*') {
  47. return Db::name('membermsgsetting')->field($field)->where($condition)->find();
  48. }
  49. /**
  50. * 编辑用户消息模板
  51. * @access public
  52. * @author csdeshang
  53. * @param type $data 数据
  54. * @return type
  55. */
  56. public function addMembermsgsettingAll($data) {
  57. return Db::name('membermsgsetting')->insertAll($data);
  58. }
  59. }