GoodsCategoryModel.class.php 768 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * lionfish 商城系统
  4. *
  5. * ==========================================================================
  6. * @link http://www.liofis.com/
  7. * @copyright Copyright (c) 2015 liofis.com.
  8. * @license http://www.liofis.com/license.html License
  9. * ==========================================================================
  10. *
  11. * @author fish
  12. *
  13. */
  14. namespace Admin\Model;
  15. use Think\Model;
  16. class GoodsCategoryModel extends Model{
  17. public function get_parent_cateory($pid)
  18. {
  19. $list = M('goods_category')->field('id,pid,name')->where( array('pid'=>$pid) )->order('sort_order asc')->select();
  20. return $list;
  21. }
  22. public function getInfoById($id,$field="*")
  23. {
  24. return M('goods_category')->field($field)->where( array('id'=>$id) )->find();
  25. }
  26. }
  27. ?>