Goodsattrindex.php 984 B

1234567891011121314151617181920212223242526272829303132
  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 Goodsattrindex extends BaseModel {
  16. /**
  17. * 对应列表
  18. * @access public
  19. * @author csdeshang
  20. * @param array $condition 条件
  21. * @param string $field 字段
  22. * @return array
  23. */
  24. public function getGoodsAttrIndexList($condition, $field = '*') {
  25. return Db::name('goodsattrindex')->where($condition)->field($field)->select()->toArray();
  26. }
  27. }