123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class ItemBo(object):
- def __init__(self):
- self._attribute = None
- self._desc = None
- self._logo = None
- self._name = None
- self._origin_price = None
- self._price = None
- @property
- def attribute(self):
- return self._attribute
- @attribute.setter
- def attribute(self, value):
- self._attribute = value
- @property
- def desc(self):
- return self._desc
- @desc.setter
- def desc(self, value):
- self._desc = value
- @property
- def logo(self):
- return self._logo
- @logo.setter
- def logo(self, value):
- self._logo = value
- @property
- def name(self):
- return self._name
- @name.setter
- def name(self, value):
- self._name = value
- @property
- def origin_price(self):
- return self._origin_price
- @origin_price.setter
- def origin_price(self, value):
- self._origin_price = value
- @property
- def price(self):
- return self._price
- @price.setter
- def price(self, value):
- self._price = value
- def to_alipay_dict(self):
- params = dict()
- if self.attribute:
- if hasattr(self.attribute, 'to_alipay_dict'):
- params['attribute'] = self.attribute.to_alipay_dict()
- else:
- params['attribute'] = self.attribute
- if self.desc:
- if hasattr(self.desc, 'to_alipay_dict'):
- params['desc'] = self.desc.to_alipay_dict()
- else:
- params['desc'] = self.desc
- if self.logo:
- if hasattr(self.logo, 'to_alipay_dict'):
- params['logo'] = self.logo.to_alipay_dict()
- else:
- params['logo'] = self.logo
- if self.name:
- if hasattr(self.name, 'to_alipay_dict'):
- params['name'] = self.name.to_alipay_dict()
- else:
- params['name'] = self.name
- if self.origin_price:
- if hasattr(self.origin_price, 'to_alipay_dict'):
- params['origin_price'] = self.origin_price.to_alipay_dict()
- else:
- params['origin_price'] = self.origin_price
- if self.price:
- if hasattr(self.price, 'to_alipay_dict'):
- params['price'] = self.price.to_alipay_dict()
- else:
- params['price'] = self.price
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = ItemBo()
- if 'attribute' in d:
- o.attribute = d['attribute']
- if 'desc' in d:
- o.desc = d['desc']
- if 'logo' in d:
- o.logo = d['logo']
- if 'name' in d:
- o.name = d['name']
- if 'origin_price' in d:
- o.origin_price = d['origin_price']
- if 'price' in d:
- o.price = d['price']
- return o
|