Storeextend.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 Storeextend extends BaseModel {
  17. /**
  18. * 查询店铺扩展信息
  19. * @access public
  20. * @author csdeshang
  21. * @param array $condition 店铺编号
  22. * @param string $field 查询字段
  23. * @return array
  24. */
  25. public function getStoreextendInfo($condition, $field = '*') {
  26. return Db::name('storeextend')->field($field)->where($condition)->find();
  27. }
  28. /**
  29. * 编辑店铺扩展信息
  30. * @access public
  31. * @author csdeshang
  32. * @param type $update 更新数据
  33. * @param type $condition 条件
  34. * @return type
  35. */
  36. public function editStoreextend($data, $condition) {
  37. if (empty($condition)) {
  38. return false;
  39. }
  40. if (is_array($data)) {
  41. $result = Db::name('storeextend')->where($condition)->update($data);
  42. return $result;
  43. } else {
  44. return false;
  45. }
  46. }
  47. /**
  48. * 删除店铺扩展信息
  49. * @access public
  50. * @author csdeshang
  51. * @param type $condition 条件
  52. * @return type
  53. */
  54. public function delStoreextend($condition) {
  55. return Db::name('storeextend')->where($condition)->delete();
  56. }
  57. /**
  58. * 添加店铺扩展信息
  59. * @access public
  60. * @author csdeshang
  61. * @param type $condition 条件
  62. * @return type
  63. */
  64. public function addStoreextend($data) {
  65. return Db::name('storeextend')->insertGetId($data);
  66. }
  67. }
  68. ?>