16 lines
220 B
PHP
16 lines
220 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace app\common\lists;
|
||
|
|
||
|
|
||
|
interface ListsExtendInterface
|
||
|
{
|
||
|
/**
|
||
|
* @notes 扩展字段
|
||
|
* @return mixed
|
||
|
* @author 令狐冲
|
||
|
* @date 2021/7/21 17:45
|
||
|
*/
|
||
|
public function extend();
|
||
|
}
|