mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 13:25:32 +08:00
21 lines
596 B
PHP
21 lines
596 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class taoexlib_mdl_ietask_cfg extends dbeav_model{
|
||
|
||
function getCfg($ietask_cfg_id,$field = array('*')){
|
||
$row = $this->db->selectrow('select '.implode(',',$field).' from sdb_taoexlib_ietask_cfg where ietask_cfg_id ='.$ietask_cfg_id);
|
||
|
||
return $row;
|
||
}
|
||
|
||
function getCfgList($ietask_cfg_id,$field = array('*')){
|
||
$rows = $this->db->select('select '.implode(',',$field).' from sdb_taoexlib_ietask_cfg');
|
||
|
||
return $rows;
|
||
}
|
||
}
|
||
?>
|