12345678910111213141516171819202122232425262728 |
- <?php
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- namespace loyalsoft;
- /**
- * Description of Enum_Active
- *
- * @author cyzhao
- */
- class Enum_Auction extends Enum{
- /**
- * 竞拍
- */
- const Auction = 1;
- /**
- * 一口价
- */
- const AllPrice= 2;
-
- }
|