Files
spacestation/common/models/receiver/Receiver_clues_cfrom_model.php
T
小鱼开发 839a352194 fixed
2024-06-02 00:34:51 +08:00

40 lines
882 B
PHP

<?php
/**
* Created by Vim
* User: lcc
* Date: 2021/06/29
* Time: 13:47
*/
defined('BASEPATH') OR exit('No direct script access allowed');
class Receiver_clues_cfrom_model extends HD_Model
{
private $table_name = 'lc_receiver_clues_cfrom';
public function __construct()
{
parent::__construct($this->table_name, 'default');
}
/**
* 根据id获取数据
* @param array() $ids
*/
public function get_map_by_ids($ids,$fileds=''){
$rows = [];
$ids = array_filter($ids);
if($ids){
if($ids){
$cf_ids = implode(',',$ids);
$where = [
"id in ($cf_ids)" => null
];
$rows = $this->map('id','',$where,'','','',$fileds);
}
}
return $rows;
}
}