12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class ErrorDishEntity(object):
- def __init__(self):
- self._dish_id = None
- self._dish_name = None
- @property
- def dish_id(self):
- return self._dish_id
- @dish_id.setter
- def dish_id(self, value):
- self._dish_id = value
- @property
- def dish_name(self):
- return self._dish_name
- @dish_name.setter
- def dish_name(self, value):
- self._dish_name = value
- def to_alipay_dict(self):
- params = dict()
- if self.dish_id:
- if hasattr(self.dish_id, 'to_alipay_dict'):
- params['dish_id'] = self.dish_id.to_alipay_dict()
- else:
- params['dish_id'] = self.dish_id
- if self.dish_name:
- if hasattr(self.dish_name, 'to_alipay_dict'):
- params['dish_name'] = self.dish_name.to_alipay_dict()
- else:
- params['dish_name'] = self.dish_name
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = ErrorDishEntity()
- if 'dish_id' in d:
- o.dish_id = d['dish_id']
- if 'dish_name' in d:
- o.dish_name = d['dish_name']
- return o
|