RoomMode.php 282 B

123456789101112131415
  1. <?php
  2. namespace addons\exam\enum;
  3. class RoomMode extends BaseEnum
  4. {
  5. /** 常规模式 */
  6. const GENERAL = 'GENERAL';
  7. /** 密码模式 */
  8. const PASSWORD = 'PASSWORD';
  9. /** 审核模式 */
  10. const AUDIT = 'AUDIT';
  11. // /** 付费 */
  12. // const PAY = 'PAY';
  13. }