You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
<?php
|
|
|
|
/**
|
|
* 基础信息接口
|
|
* @author YS
|
|
* @version 1.0
|
|
*/
|
|
class Api_BasicinfoController extends Ctrl_Api{
|
|
public $StrainsModel;
|
|
public $GeneModel;
|
|
public $POST;
|
|
public $GroupModel;
|
|
public function init(){
|
|
if(empty($_SESSION['uid'])) {Tool_Fnc::apiMsg('非法调用', '500');}
|
|
$this->StrainsModel=new StrainsModel();
|
|
$this->GeneModel=new GeneModel();
|
|
$this->POST =json_decode(file_get_contents('php://input'),true);
|
|
$this->GroupModel=new GroupModel();
|
|
}
|
|
//获取品系列表接口
|
|
public function strainsAction(){
|
|
$data = $this->StrainsModel->getModelList();
|
|
Tool_Fnc::apiMsg('获取成功', '200',$data);
|
|
}
|
|
//获取基因列表接口
|
|
public function geneAction(){
|
|
$data = $this->GeneModel->getModelList();
|
|
Tool_Fnc::apiMsg('获取成功', '200',$data);
|
|
}
|
|
//获取基因列表接口
|
|
public function groupAction(){
|
|
$data = $this->GroupModel->getModelList();
|
|
Tool_Fnc::apiMsg('获取成功', '200',$data);
|
|
}
|
|
|
|
} |