READ_STATUS.php 198 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Module\Friend\Enums;
  3. /**
  4. * 读取状态枚举
  5. */
  6. class READ_STATUS
  7. {
  8. /**
  9. * 未读
  10. */
  11. const UNREAD = 0;
  12. /**
  13. * 已读
  14. */
  15. const READ = 1;
  16. }