<?php namespace app\common\lists; interface ListsInterface { /** * @notes 实现数据列表 * @return array * @author 令狐冲 * @date 2021/7/6 00:33 */ public function lists(): array; /** * @notes 实现数据列表记录数 * @return int * @author 令狐冲 * @date 2021/7/6 00:34 */ public function count(): int; }