UserPathContentService.class.php 362 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: liyifei2012it
 * Date: 18/4/25
 * Time: 15:30
 */
namespace Common\Service;

use Common\Model\UserPathContentModel;

class UserPathContentService extends AbstractService
{
    // 构造方法
    public function __construct()
    {
        parent::__construct();
        $this->_d = new UserPathContentModel();
    }
}