* @version : HUOSDK 8.0 */ 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; }