StockQuantity.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import json
  4. from alipay.aop.api.constant.ParamConstants import *
  5. class StockQuantity(object):
  6. def __init__(self):
  7. self._date = None
  8. self._quantity = None
  9. @property
  10. def date(self):
  11. return self._date
  12. @date.setter
  13. def date(self, value):
  14. self._date = value
  15. @property
  16. def quantity(self):
  17. return self._quantity
  18. @quantity.setter
  19. def quantity(self, value):
  20. self._quantity = value
  21. def to_alipay_dict(self):
  22. params = dict()
  23. if self.date:
  24. if hasattr(self.date, 'to_alipay_dict'):
  25. params['date'] = self.date.to_alipay_dict()
  26. else:
  27. params['date'] = self.date
  28. if self.quantity:
  29. if hasattr(self.quantity, 'to_alipay_dict'):
  30. params['quantity'] = self.quantity.to_alipay_dict()
  31. else:
  32. params['quantity'] = self.quantity
  33. return params
  34. @staticmethod
  35. def from_alipay_dict(d):
  36. if not d:
  37. return None
  38. o = StockQuantity()
  39. if 'date' in d:
  40. o.date = d['date']
  41. if 'quantity' in d:
  42. o.quantity = d['quantity']
  43. return o