18 lines
386 B
PHP
18 lines
386 B
PHP
<?php
|
|
|
|
namespace app\model\zdoo;
|
|
|
|
//沟通记录
|
|
class Communication extends Base
|
|
{
|
|
protected $table = 'sys_action';
|
|
|
|
public static function getListByCustomerList($customerIDList)
|
|
{
|
|
return self::where('objectType', 'customer')
|
|
->whereIn('objectID', $customerIDList)
|
|
->where('comment', '<>','')
|
|
->order('date desc')
|
|
->select();
|
|
}
|
|
} |