12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace huo\model\member;
- use huo\model\common\CommonModel;
- class VipModel extends CommonModel {
- protected $name = 'vip';
-
- const NOT_MEMBER = 0;
-
- const DAY_MEMBER = 1;
-
- const WEEK_MEMBER = 2;
-
- const MONTH_MEMBER = 3;
-
- const NOT_AUTO_RENEW = 1;
-
- const AUTO_RENEW = 2;
-
- const NOT_RENEW = 3;
- }
|