Storegrade.php 2.7 KB

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