PolicyEnum.php 441 B

123456789101112131415161718
  1. <?php
  2. namespace common\enums;
  3. class PolicyEnum
  4. {
  5. const POLICY_INDUSTRY = 'industry';
  6. const POLICY_EDUCATION = 'education';
  7. const POLICY_MEDICAL = 'medical';
  8. const POLICY_CIRCUIT = 'circuit';
  9. public static $list = [
  10. self::POLICY_INDUSTRY => '现代产业',
  11. self::POLICY_EDUCATION => '高等教育',
  12. self::POLICY_MEDICAL => '医疗卫生',
  13. self::POLICY_CIRCUIT => '集成电路',
  14. ];
  15. }