Storemsgtpl.php 1.4 KB

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