1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\common\enum;
-
- class PrinterEnum {
- const LYL_PRINTER = 'YLYP';
-
-
-
- public static function getPrinterDesc($from = true)
- {
- $desc = [
- self::LYL_PRINTER => '易联云',
- ];
- if(true === $from){
- return $desc;
- }
- return $desc[$from] ?? '';
-
- }
-
- }
|