12345678910111213141516171819202122232425 |
- # -*- coding: utf-8 -*-
- #!/usr/bin/env python
- # from voluptuous import Schema, Coerce, ALLOW_EXTRA
- # deviceStatusSchema = Schema(
- # {
- # 'status': int,
- # 'password': basestring,
- # 'nickname': basestring,
- #
- # 'annualTrafficCost': Coerce(RMB),
- #
- # # 'user': dict,
- # # 'dealer': dict,
- #
- # # 'aliPayApp': dict,
- # # 'wechatPayApp': dict,
- # # 'customizedDealerGzhAllowable': bool,
- # # 'customizedWechatCashflowAllowable': bool,
- # # 'customizedUserGzhAllowable': bool,
- # # 'customizedAlipayCashflowAllowable': bool,
- # }, extra = ALLOW_EXTRA)
- from signal_callback import post_operate_device_callback
|