1234567891011121314151617181920212223242526272829303132333435 |
- <?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.
- */
- /**
- * Description of Err
- * 错误码
- * @author jgao
- */
- class Err {
- //put your code here
-
- /**
- * 成功
- */
- const succeed = 0;
-
- /**
- * 默认错误
- */
- const err_default = 1;
-
- // --------------服务端内部错误----------------
-
- // --------------业务逻辑错误----------------
-
- /**
- * 用户身份错误
- */
- const err_usr_ill = 6001;
- }
|