25 lines
412 B
PHP
25 lines
412 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace app\common\lists;
|
||
|
|
||
|
|
||
|
interface ListsExcelInterface
|
||
|
{
|
||
|
/**
|
||
|
* @notes 设置导出字段
|
||
|
* @return array
|
||
|
* @author 令狐冲
|
||
|
* @date 2021/7/21 16:04
|
||
|
*/
|
||
|
public function setExcelFields(): array;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @notes 设置导出文件名
|
||
|
* @return string
|
||
|
* @author 令狐冲
|
||
|
* @date 2021/7/26 17:47
|
||
|
*/
|
||
|
public function setFileName():string;
|
||
|
}
|