Storenavigation.php 2.5 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 Storenavigation extends BaseModel
  17. {
  18. protected static function init()
  19. {
  20. parent::init(); // TODO: Change the autogenerated stub
  21. }
  22. /**
  23. * 读取列表
  24. * @access public
  25. * @author csdeshang
  26. * @param type $condition 条件
  27. * @param type $field 字段
  28. * @return type
  29. */
  30. public function getStorenavigationList($condition, $field='*') {
  31. $result = Db::name('storenavigation')->field($field)->where($condition)->order('storenav_sort asc')->select()->toArray();
  32. return $result;
  33. }
  34. /**
  35. * 读取单条记录
  36. * @access public
  37. * @author csdeshang
  38. * @param array $condition
  39. * @return array
  40. */
  41. public function getStorenavigationInfo($condition) {
  42. $result = Db::name('storenavigation')->where($condition)->find();
  43. return $result;
  44. }
  45. /**
  46. * 增加
  47. * @access public
  48. * @author csdeshang
  49. * @param array $data 参数内容
  50. * @return bool
  51. */
  52. public function addStorenavigation($data){
  53. return Db::name('storenavigation')->insertGetId($data);
  54. }
  55. /**
  56. * 更新
  57. * @access public
  58. * @author csdeshang
  59. * @param array $update 更新数据
  60. * @param array $condition 条件
  61. * @return bool
  62. */
  63. public function editStorenavigation($update, $condition){
  64. return Db::name('storenavigation')->where($condition)->update($update);
  65. }
  66. /**
  67. * 删除
  68. * @access public
  69. * @author csdeshang
  70. * @param array $condition 条件
  71. * @return bool
  72. */
  73. public function delStorenavigation($condition){
  74. return Db::name('storenavigation')->where($condition)->delete();
  75. }
  76. }