Daddress.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 Daddress extends BaseModel
  17. {
  18. /**
  19. * 新增
  20. * @access public
  21. * @author csdeshang
  22. * @param type $data 数据
  23. * @return type
  24. */
  25. public function addDaddress($data) {
  26. return Db::name('daddress')->insertGetId($data);
  27. }
  28. /**
  29. * 删除
  30. * @access public
  31. * @author csdeshang
  32. * @param type $condition 条件
  33. * @return type
  34. */
  35. public function delDaddress($condition) {
  36. return Db::name('daddress')->where($condition)->delete();
  37. }
  38. /**
  39. * 编辑更新
  40. * @access public
  41. * @author csdeshang
  42. * @param type $data 更新数据
  43. * @param type $condition 条件
  44. * @return type
  45. */
  46. public function editDaddress($data, $condition) {
  47. return Db::name('daddress')->where($condition)->update($data);
  48. }
  49. /**
  50. * 查询单条
  51. * @access public
  52. * @author csdeshang
  53. * @param type $condition 检索条件
  54. * @param type $fields 字段
  55. * @return type
  56. */
  57. public function getAddressInfo($condition, $fields = '*') {
  58. return Db::name('daddress')->field($fields)->where($condition)->find();
  59. }
  60. /**
  61. * 查询多条
  62. * @access public
  63. * @author csdeshang
  64. * @param type $condition 条件
  65. * @param type $fields 字段
  66. * @param type $order 排序
  67. * @param type $limit 限制
  68. * @return type
  69. */
  70. public function getAddressList($condition, $fields = '*', $order = '', $limit = 0) {
  71. return Db::name('daddress')->field($fields)->where($condition)->order($order)->limit($limit)->select()->toArray();
  72. }
  73. }