Storemsgtpl.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 Storemsgtpl extends BaseModel {
  17. /**
  18. * 店铺消息模板列表
  19. * @access public
  20. * @author csdeshang
  21. * @param array $condition 条件
  22. * @param string $field 字段
  23. * @param string $order 排序
  24. * @return array
  25. */
  26. public function getStoremsgtplList($condition, $field = '*', $order = 'storemt_code asc') {
  27. return Db::name('storemsgtpl')->field($field)->where($condition)->order($order)->select()->toArray();
  28. }
  29. /**
  30. * 店铺消息模板详细信息
  31. * @access public
  32. * @author csdeshang
  33. * @param array $condition 条件
  34. * @param string $field 字段
  35. * @return array
  36. */
  37. public function getStoremsgtplInfo($condition, $field = '*') {
  38. return Db::name('storemsgtpl')->field($field)->where($condition)->find();
  39. }
  40. /**
  41. * 编辑店铺消息模板
  42. * @access public
  43. * @author csdeshang
  44. * @param arrat $condition 条件
  45. * @param array $update 更新数据
  46. * @return array
  47. */
  48. public function editStoremsgtpl($condition, $update) {
  49. return Db::name('storemsgtpl')->where($condition)->update($update);
  50. }
  51. }
  52. ?>