Skip to content
  • This project
    • Loading...
  • Sign in

杨建斌 / page

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 1
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • page
  • application
  • models
  • Base_model.php
  • yangjianbin's avatar
    init · b0af62fd
    yangjianbin committed 2018-03-20 22:27:38 +0800
    b0af62fd Browse Directory
Base_model.php 178 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php

class Base_model extends CI_Model{

    public function __construct(){
        parent::__construct();
    }

    public function xx()
    {
        return 'xxx';
    }


}