Storemsgtpl.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  9. * 网站地址: https://www.valimart.net/
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 数据层模型
  14. */
  15. class Storemsgtpl extends BaseModel {
  16. /**
  17. * 店铺消息模板列表
  18. * @access public
  19. * @author csdeshang
  20. * @param array $condition 条件
  21. * @param string $field 字段
  22. * @param string $order 排序
  23. * @return array
  24. */
  25. public function getStoremsgtplList($condition, $field = '*', $order = 'storemt_code asc') {
  26. return Db::name('storemsgtpl')->field($field)->where($condition)->order($order)->select()->toArray();
  27. }
  28. /**
  29. * 店铺消息模板详细信息
  30. * @access public
  31. * @author csdeshang
  32. * @param array $condition 条件
  33. * @param string $field 字段
  34. * @return array
  35. */
  36. public function getStoremsgtplInfo($condition, $field = '*') {
  37. return Db::name('storemsgtpl')->field($field)->where($condition)->find();
  38. }
  39. /**
  40. * 编辑店铺消息模板
  41. * @access public
  42. * @author csdeshang
  43. * @param arrat $condition 条件
  44. * @param array $update 更新数据
  45. * @return array
  46. */
  47. public function editStoremsgtpl($condition, $update) {
  48. return Db::name('storemsgtpl')->where($condition)->update($update);
  49. }
  50. }
  51. ?>