Storeextend.php 2.0 KB

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