+ [task#135724] add get env method.

This commit is contained in:
liyang
2024-12-31 13:56:09 +08:00
committed by 曹延义
parent 7c5a891b14
commit 2d0d9273da
+13
View File
@@ -1426,4 +1426,17 @@ class dataset
{
return $this->dao->select($fieldList)->from(TABLE_HOST)->where('deleted')->eq(0);
}
/**
* 获取DevOps环境信息。
* Get devops env.
*
* @param string $fieldList
* @access public
* @return void
*/
public function getDevOpsEnv($fieldList)
{
return $this->dao->select($fieldList)->from(TABLE_ENV)->where('deleted')->eq(0);
}
}