修改线索消息记录

This commit is contained in:
lccsw
2025-12-03 08:48:16 +08:00
parent 2b712b035b
commit 5af2b47051
4 changed files with 10 additions and 3 deletions
+2 -1
View File
@@ -14,7 +14,7 @@ class Clues_entity
}
//添加日志
public function add_log($clue_id, $uid, $uname, $log, $type = '')
public function add_log($clue_id, $uid, $uname, $log, $type = '', $cf_platform = 'admin')
{
$this->ci->load->model('receiver/receiver_clue_oplogs_model', 'oplogs_model');
$data = [
@@ -25,6 +25,7 @@ class Clues_entity
'c_time' => time()
];
$type && $data['type'] = $type;
$cf_platform && $data['cf_platform'] = $cf_platform;
$r_id = $this->ci->oplogs_model->add($data);
return $r_id;
}
@@ -18,6 +18,11 @@ class Receiver_clue_oplogs_model extends HD_Model
//type状态值11不解锁
const TYPE_UNLOCK = 11;
//消息来源
const CF_PLATFORM_ADMIN = 'admin';
const CF_PLATFORM_WXAPP = 'wxapp';
const CF_PLATFORM_PINGAN_ADMIN = 'pingan_admin';
public function __construct()
{
parent::__construct($this->table_name, 'default');