UserSignRecordService.class.php 354 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: zhonglei
 * Date: 17/7/26
 * Time: 16:36
 */
namespace Common\Service;

use Common\Model\UserSignRecordModel;

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