16 lines
235 B
PHP
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;
|
|
} |