12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class KoubeiCateringDishMaterialQueryModel(object):
- def __init__(self):
- self._material_id = None
- self._merchant_id = None
- self._page_no = None
- self._page_size = None
- @property
- def material_id(self):
- return self._material_id
- @material_id.setter
- def material_id(self, value):
- self._material_id = value
- @property
- def merchant_id(self):
- return self._merchant_id
- @merchant_id.setter
- def merchant_id(self, value):
- self._merchant_id = value
- @property
- def page_no(self):
- return self._page_no
- @page_no.setter
- def page_no(self, value):
- self._page_no = value
- @property
- def page_size(self):
- return self._page_size
- @page_size.setter
- def page_size(self, value):
- self._page_size = value
- def to_alipay_dict(self):
- params = dict()
- if self.material_id:
- if hasattr(self.material_id, 'to_alipay_dict'):
- params['material_id'] = self.material_id.to_alipay_dict()
- else:
- params['material_id'] = self.material_id
- if self.merchant_id:
- if hasattr(self.merchant_id, 'to_alipay_dict'):
- params['merchant_id'] = self.merchant_id.to_alipay_dict()
- else:
- params['merchant_id'] = self.merchant_id
- if self.page_no:
- if hasattr(self.page_no, 'to_alipay_dict'):
- params['page_no'] = self.page_no.to_alipay_dict()
- else:
- params['page_no'] = self.page_no
- if self.page_size:
- if hasattr(self.page_size, 'to_alipay_dict'):
- params['page_size'] = self.page_size.to_alipay_dict()
- else:
- params['page_size'] = self.page_size
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = KoubeiCateringDishMaterialQueryModel()
- if 'material_id' in d:
- o.material_id = d['material_id']
- if 'merchant_id' in d:
- o.merchant_id = d['merchant_id']
- if 'page_no' in d:
- o.page_no = d['page_no']
- if 'page_size' in d:
- o.page_size = d['page_size']
- return o
|