| 1234567891011121314151617181920212223 | <?php/** * LinksModel.php UTF-8 *  * * @date    : 2018/1/23 15:30 * * @license 这不是一个自由软件,未经授权不许任何使用和传播。 * @author  : linjiebin <ljb@huosdk.com> * @version : HUOSDK 7.2 */namespace huo\model\links;use huo\model\common\CommonModel;class LinksModel extends CommonModel {    protected $name = 'link';    public function getList($where){        $params['where'] = $where;        return $this->getDatas($params);    }}
 |