| 123456789101112131415161718192021222324252627 |
- <?php
- namespace common\helpers;
- /**
- * Class TreeHelper
- * @package common\helpers
- * @author jianyan74 <751393839@qq.com>
- */
- class TreeHelper
- {
- /**
- * @return string
- */
- public static function prefixTreeKey($id)
- {
- return $id . '-';
- }
- /**
- * @return string
- */
- public static function defaultTreeKey()
- {
- return '0-';
- }
- }
|