Mailtemplates.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 Mailtemplates extends BaseModel {
  16. /**
  17. * 取单条信息
  18. * @access public
  19. * @author csdeshang
  20. * @param array $condition 条件
  21. * @param string $fields 字段
  22. */
  23. public function getTplInfo($condition = array(), $fields = '*') {
  24. return Db::name('mailmsgtemlates')->where($condition)->field($fields)->find();
  25. }
  26. /**
  27. * 模板列表
  28. * @access public
  29. * @author csdeshang
  30. * @param array $condition 检索条件
  31. * @return array 数组形式的返回结果
  32. */
  33. public function getTplList($condition = array()) {
  34. return Db::name('mailmsgtemlates')->where($condition)->select()->toArray();
  35. }
  36. /**
  37. * 编辑模板
  38. * @access public
  39. * @author csdeshang
  40. * @param type $data 参数内容
  41. * @param type $condition 条件
  42. * @return type
  43. */
  44. public function editTpl($data = array(), $condition = array()) {
  45. return Db::name('mailmsgtemlates')->where($condition)->update($data);
  46. }
  47. }
  48. ?>