Storesnssetting.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 数据层模型
  15. */
  16. class Storesnssetting extends BaseModel
  17. {
  18. /**
  19. * 获取单条动态设置设置信息
  20. * @access public
  21. * @author csdeshang
  22. * @param array $condition 条件
  23. * @param string $field 字段
  24. * @return array
  25. */
  26. public function getStoresnssettingInfo($condition, $field = '*')
  27. {
  28. return Db::name('storesnssetting')->field($field)->where($condition)->find();
  29. }
  30. /**
  31. * 保存店铺动态设置
  32. * @access public
  33. * @author csdeshang
  34. * @param array $data 参数数据
  35. * @return boolean
  36. */
  37. public function addStoresnssetting($data)
  38. {
  39. return Db::name('storesnssetting')->insert($data);
  40. }
  41. /**
  42. * 保存店铺动态设置
  43. * @access public
  44. * @author csdeshang
  45. * @param type $update 更新数据
  46. * @param type $condition 条件
  47. * @return boolean
  48. */
  49. public function editStoresnssetting($update, $condition)
  50. {
  51. return Db::name('storesnssetting')->where($condition)->update($update);
  52. }
  53. }