Attribute.php 2.7 KB

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