14 lines
143 B
PHP
Executable File
14 lines
143 B
PHP
Executable File
<?php
|
|
|
|
|
|
namespace app\common\enum;
|
|
|
|
|
|
class ExportEnum
|
|
{
|
|
//获取导出信息
|
|
const INFO = 1;
|
|
//导出excel
|
|
const EXPORT = 2;
|
|
|
|
} |