multi-store/app/common/lists/ListsSearchInterface.php
2024-05-30 21:37:55 +08:00

16 lines
235 B
PHP

<?php
namespace app\common\lists;
interface ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return array
* @author 令狐冲
* @date 2021/7/7 19:44
*/
public function setSearch(): array;
}