12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * lionfish 商城系统
- *
- * ==========================================================================
- * @link http://www.liofis.com/
- * @copyright Copyright (c) 2015 liofis.com.
- * @license http://www.liofis.com/license.html License
- * ==========================================================================
- *
- * @author fish
- *
- */
- namespace Admin\Model;
- use Think\Model;
- class GoodsCategoryModel extends Model{
- public function get_parent_cateory($pid)
- {
- $list = M('goods_category')->field('id,pid,name')->where( array('pid'=>$pid) )->order('sort_order asc')->select();
- return $list;
- }
-
- public function getInfoById($id,$field="*")
- {
- return M('goods_category')->field($field)->where( array('id'=>$id) )->find();
- }
- }
- ?>
|