Attribute.php 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 Attribute extends BaseModel {
  17. const SHOW0 = 0; // 不显示
  18. const SHOW1 = 1; // 显示
  19. /**
  20. * 属性列表
  21. * @access public
  22. * @author csdeshang
  23. * @param array $condition 检索条件
  24. * @param string $field 字段
  25. * @return array
  26. */
  27. public function getAttributeList($condition, $field = '*') {
  28. return Db::name('attribute')->where($condition)->field($field)->order('attr_sort asc')->select()->toArray();
  29. }
  30. /**
  31. * 属性列表
  32. * @access public
  33. * @author csdeshang
  34. * @param array $condition 检索条件
  35. * @param string $field 字段
  36. * @return array
  37. */
  38. public function getAttributeShowList($condition, $field = '*') {
  39. $condition[] = array('attr_show','=',self::SHOW1);
  40. return $this->getAttributeList($condition, $field);
  41. }
  42. /**
  43. * 属性值列表
  44. * @access public
  45. * @author csdeshang
  46. * @param array $condition 检索条件
  47. * @param string $field 字段
  48. * @return array
  49. */
  50. public function getAttributeValueList($condition, $field = '*') {
  51. return Db::name('attributevalue')->where($condition)->field($field)->order('attrvalue_sort asc,attrvalue_id asc')->select()->toArray();
  52. }
  53. /**
  54. * 保存属性值
  55. * @access public
  56. * @author csdeshang
  57. * @param array $data 参数内容
  58. * @return boolean
  59. */
  60. public function addAttributeValueAll($data) {
  61. return Db::name('attributevalue')->insertAll($data);
  62. }
  63. /**
  64. * 保存属性值
  65. * @access public
  66. * @author csdeshang
  67. * @param array $data 参数内容
  68. * @return boolean
  69. */
  70. public function addAttributeValue($data) {
  71. return Db::name('attributevalue')->insertGetId($data);
  72. }
  73. /**
  74. * 编辑属性值
  75. * @access public
  76. * @author csdeshang
  77. * @param array $update 更新数据
  78. * @param array $condition 条件
  79. * @return boolean
  80. */
  81. public function editAttributeValue($update, $condition) {
  82. return Db::name('attributevalue')->where($condition)->update($update);
  83. }
  84. }
  85. ?>