Sign in

colleague / study-project · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
7bffbde81bd1a169dfa3aaa27ef0a912c550aa54
  • study-project
  • trunk
  • Exam
  • Common
  • Service
  • AttrService.class.php
  • init
    d12db008
    马雄飞 authored
    7 years ago  
    Browse Code »
AttrService.class.php 383 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<?php
/**
 * 考试-属性信息表
 * @author: houyingcai
 * @email:    594609175@qq.com
 * @date :  2017-05-19 17:44:51
 * @version $Id$
 */

namespace Common\Service;

use Common\Model\AttrModel;

class AttrService extends AbstractService
{

    // 构造方法
    public function __construct()
    {
        $this->_d = new AttrModel();

        parent::__construct();
    }

}