Membermsgtpl.php 1.7 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 Membermsgtpl extends BaseModel {
  16. /**
  17. * 用户消息模板列表
  18. * @access public
  19. * @author csdeshang
  20. * @param array $condition 条件
  21. * @param string $field 字段
  22. * @param int $order 排序
  23. * @return array
  24. */
  25. public function getMembermsgtplList($condition, $field = '*', $order = 'membermt_code asc') {
  26. return Db::name('membermsgtpl')->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. */
  35. public function getMembermsgtplInfo($condition, $field = '*') {
  36. return Db::name('membermsgtpl')->field($field)->where($condition)->find();
  37. }
  38. /**
  39. * 编辑用户消息模板
  40. * @access public
  41. * @author csdeshang
  42. * @param array $condition 条件
  43. * @param unknown $update 更新数据
  44. * @return bool
  45. */
  46. public function editMembermsgtpl($condition, $update) {
  47. return Db::name('membermsgtpl')->where($condition)->update($update);
  48. }
  49. }
  50. ?>