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
406 B

<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2/21/2020
* Time: 11:46 PM
*/
namespace app\lib\enum;
class Temp
{
const SINGAL = 1; //单页
const ISLIST = 2;//列表
const DOWNLOAD = 3;//列表
public static $TYPEMASK = [
self::SINGAL => "单页",
self::ISLIST => "列表",
self::DOWNLOAD => "下载页面",
];
}