first commit
This commit is contained in:
16
Swoft_BackEndApi/app/Model/Dao/CourseDao.php
Normal file
16
Swoft_BackEndApi/app/Model/Dao/CourseDao.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace App\Model\Dao;
|
||||
|
||||
use Swoft\Bean\Annotation\Mapping\Bean;
|
||||
|
||||
/**
|
||||
* @Bean("CourseDao")
|
||||
* @package App\Model\Dao
|
||||
*/
|
||||
class CourseDao extends BmobDao {
|
||||
public function addNewCourseDao (array $params) {
|
||||
return $this->addNewObject($params);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user