You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
412 B
24 lines
412 B
4 years ago
|
<?php
|
||
|
/**
|
||
|
* Created by PhpStorm.
|
||
|
* User: Administrator
|
||
|
* Date: 2/21/2020
|
||
|
* Time: 7:37 PM
|
||
|
*/
|
||
|
|
||
|
namespace app\lib\enum;
|
||
|
|
||
|
|
||
|
class ThirdColumn
|
||
|
{
|
||
|
const SINGAL = 1; //单页
|
||
|
const ISLIST = 2;//列表
|
||
|
const DOWNLOAD = 3;//列表
|
||
|
|
||
|
public static $TYPEMASK = [
|
||
|
self::SINGAL => "单页",
|
||
|
self::ISLIST => "列表",
|
||
|
self::DOWNLOAD => "下载列表",
|
||
|
];
|
||
|
}
|