12345678910111213141516171819202122232425262728293031 |
- <?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_College
- *
- * @author cyzhao
- */
- class Enum_College extends Enum{
- /**
- *
- */
- const none = 0;
- /**
- *
- */
- const update = 1;
- /**
- *
- */
- const finish= 2;
- }
|