Enum_Auction.php 424 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. namespace loyalsoft;
  8. /**
  9. * Description of Enum_Active
  10. *
  11. * @author cyzhao
  12. */
  13. class Enum_Auction extends Enum{
  14. /**
  15. * 竞拍
  16. */
  17. const Auction = 1;
  18. /**
  19. * 一口价
  20. */
  21. const AllPrice= 2;
  22. }