...
|
...
|
@@ -59,6 +59,11 @@ class SyncToEsCmd { |
|
|
* @time 2025/6/6 11:07
|
|
|
*/
|
|
|
public function isAuto($data){
|
|
|
// 没有发件人的直接标记
|
|
|
if(!$data['from']){
|
|
|
return 1;
|
|
|
}
|
|
|
|
|
|
$is_auto = $this->db->count('select count(*) from `lists_auto` where `list_id` = '.$data['id']) ? 1 : 0;
|
|
|
|
|
|
if($is_auto) return 1;
|
...
|
...
|
|