| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace fast;
- /**
- * 会员等级
- */
- class MembershipLevel
- {
- /**
- * 无等级
- */
- const NOLevel = 0;
- /**
- * 市场会员
- */
- const MarketMembership = 1;
- /**
- * 社区长
- */
- const CommunityLeader = 2;
- /**
- * 系统领导人
- */
- const SystemLeader = 3;
- private static array $actions = [
- self::NOLevel => '无等级',
- self::MarketMembership => '市场会员',
- self::CommunityLeader => '公司俱乐部',
- self::SystemLeader => '分公司',
- ];
- public static function getText(int $value): string
- {
- if (array_key_exists($value, self::$actions)) {
- return self::$actions[$value];
- } else {
- return Common::getUnknownText();
- }
- }
- }
|