cfmgrv4 init...4

This commit is contained in:
최준흠 2024-10-28 13:40:00 +09:00
parent 09a1d010f7
commit 3cdc9a5d6e

View File

@ -85,12 +85,11 @@ class AuditLogModel extends CommonModel
{ {
return $this->modify_process($entity, $formDatas); return $this->modify_process($entity, $formDatas);
} }
//List 검색용 //List 검색용
public function setList_WordFilter(string $word, $field = null): void public function setList_WordFilter(string $word, $field = null): void
{ {
parent::setList_WordFilter($word, $field); parent::setList_WordFilter($word, $field);
$this->orLike(self::TABLE . '.zone_name', $word, 'both'); $this->orLike(self::TABLE . '.zone_name', $word, 'both');
$this->orLike(self::TABLE . '.resource_name', $word, 'both'); $this->orLike(self::TABLE . '.resource_name', $word, 'both');
}
} }
} }