Sellergroup.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 Sellergroup extends BaseModel {
  17. /**
  18. * 读取列表
  19. * @access public
  20. * @author csdeshang
  21. * @param type $condition 条件
  22. * @return type
  23. */
  24. public function getSellergroupList($condition) {
  25. $result = Db::name('sellergroup')->where($condition)->select()->toArray();
  26. return $result;
  27. }
  28. /**
  29. * 读取单条记录
  30. * @access public
  31. * @author csdeshang
  32. * @param type $condition 条件
  33. * @return type
  34. */
  35. public function getSellergroupInfo($condition) {
  36. $result = Db::name('sellergroup')->where($condition)->find();
  37. return $result;
  38. }
  39. /**
  40. * 判断是否存在
  41. * @access public
  42. * @author csdeshang
  43. * @param type $condition 条件
  44. * @return boolean
  45. */
  46. public function isSellergroupExist($condition) {
  47. $result = Db::name('sellergroup')->where($condition)->find();
  48. if (empty($result)) {
  49. return FALSE;
  50. } else {
  51. return TRUE;
  52. }
  53. }
  54. /**
  55. * 增加
  56. * @access public
  57. * @author csdeshang
  58. * @param array $data 参数内容
  59. * @return bool
  60. */
  61. public function addSellergroup($data) {
  62. return Db::name('sellergroup')->insertGetId($data);
  63. }
  64. /**
  65. * 更新
  66. * @access public
  67. * @author csdeshang
  68. * @param array $update 数据
  69. * @param array $condition 条件
  70. * @return bool
  71. */
  72. public function editSellergroup($update, $condition) {
  73. return Db::name('sellergroup')->where($condition)->update($update);
  74. }
  75. /**
  76. * 删除
  77. * @access public
  78. * @author csdeshang
  79. * @param array $condition 条件
  80. * @return bool
  81. */
  82. public function delSellergroup($condition) {
  83. return Db::name('sellergroup')->where($condition)->delete();
  84. }
  85. }