Membermsgtpl.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. *
  6. *
  7. * ----------------------------------------------------------------------------
  8. *
  9. * 数据层模型
  10. */
  11. class Membermsgtpl extends BaseModel
  12. {
  13. /**
  14. * 用户消息模板列表
  15. * @access public
  16. * @author csdeshang
  17. * @param array $condition 条件
  18. * @param string $field 字段
  19. * @param int $order 排序
  20. * @return array
  21. */
  22. public function getMembermsgtplList($condition, $field = '*', $order = 'membermt_code asc')
  23. {
  24. return Db::name('membermsgtpl')->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. */
  33. public function getMembermsgtplInfo($condition, $field = '*')
  34. {
  35. return Db::name('membermsgtpl')->field($field)->where($condition)->find();
  36. }
  37. /**
  38. * 编辑用户消息模板
  39. * @access public
  40. * @author csdeshang
  41. * @param array $condition 条件
  42. * @param unknown $update 更新数据
  43. * @return bool
  44. */
  45. public function editMembermsgtpl($condition, $update)
  46. {
  47. return Db::name('membermsgtpl')->where($condition)->update($update);
  48. }
  49. }