Storegrade.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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 Storegrade extends BaseModel {
  17. /**
  18. * 列表
  19. * @access public
  20. * @author csdeshang
  21. * @param type $condition 检索条件
  22. * @param type $order 排序
  23. * @return type
  24. */
  25. public function getStoregradeList($condition = array(),$order = 'storegrade_sort asc') {
  26. $result = Db::name('storegrade')->where($condition)->order($order)->select()->toArray();
  27. return $result;
  28. }
  29. /**
  30. * 取单个内容
  31. * @access public
  32. * @author csdeshang
  33. * @param int $id 分类ID
  34. * @return array 数组类型的返回结果
  35. */
  36. public function getOneStoregrade($id) {
  37. if (intval($id) > 0) {
  38. $result = Db::name('storegrade')->where('storegrade_id',$id)->find();
  39. return $result;
  40. } else {
  41. return false;
  42. }
  43. }
  44. /**
  45. * 新增
  46. * @access public
  47. * @author csdeshang
  48. * @param array $data 参数内容
  49. * @return bool 布尔类型的返回结果
  50. */
  51. public function addStoregrade($data) {
  52. if (empty($data)) {
  53. return false;
  54. }
  55. $result = Db::name('storegrade')->insertGetId($data);
  56. return $result;
  57. }
  58. /**
  59. * 更新信息
  60. * @access public
  61. * @author csdeshang
  62. * @param array $data 更新数据
  63. * @return bool 布尔类型的返回结果
  64. */
  65. public function editStoregrade($storegrade_id,$data) {
  66. if (empty($data)) {
  67. return false;
  68. }
  69. $result = Db::name('storegrade')->where('storegrade_id',$storegrade_id)->update($data);
  70. return $result;
  71. }
  72. /**
  73. * 删除分类
  74. * @access public
  75. * @author csdeshang
  76. * @param int $id 记录ID
  77. * @return bool 布尔类型的返回结果
  78. */
  79. public function delStoregrade($storegrade_id) {
  80. $storegrade_id = intval($storegrade_id);
  81. if ($storegrade_id > 0) {
  82. $result = Db::name('storegrade')->where('storegrade_id', $storegrade_id)->delete();
  83. return $result;
  84. } else {
  85. return false;
  86. }
  87. }
  88. }
  89. ?>