CommentScoreService.class.php
393 Bytes
<?php
/**
* 培训评价评分表Service
* @author: houyingcai
* @email: 594609175@qq.com
* @date : 2017-08-29 16:40:17
* @version $Id$
*/
namespace Common\Service;
use Common\Model\CommentScoreModel;
class CommentScoreService extends AbstractService
{
public function __construct()
{
$this->_d = new CommentScoreModel();
parent::__construct();
}
}