OrderStatus.php 318 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. *
  4. * @copyright ©2020 点小铺
  5. * @author hanj
  6. * @link: https://dyuit.com
  7. * Created by VSCode
  8. */
  9. namespace app\common\enum;
  10. /**
  11. * 订单状态枚举类
  12. * Class OrderStatus
  13. * @package app\common\enum
  14. */
  15. class OrderStatus extends EnumBasics
  16. {
  17. const ORDER_PAYMENT = 20;
  18. }