GoodsModel.php
286 字节
<?php
/**
* Created by PhpStorm.
* auther: sgj
* Date: 2018/12/17
* Time: 16:29
*/
namespace app\portal\model;
use think\Model;
class GoodsModel extends Model
{
public function getList($map=''){
$goods=$this->where($map)->select();
return $goods;
}
}