mirror of
https://gitee.com/likeadmin/likeadmin_php_saas.git
synced 2026-09-06 14:59:19 +08:00
14 lines
143 B
PHP
14 lines
143 B
PHP
<?php
|
|
|
|
|
|
namespace app\common\enum;
|
|
|
|
|
|
class ExportEnum
|
|
{
|
|
//获取导出信息
|
|
const INFO = 1;
|
|
//导出excel
|
|
const EXPORT = 2;
|
|
|
|
} |