123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class AlipayBossFncApbillCustviewBatchqueryModel(object):
- def __init__(self):
- self._ar_no = None
- self._bill_invoice_link_statuses = None
- self._bill_types = None
- self._biz_type = None
- self._ccy = None
- self._end_month = None
- self._inst_id = None
- self._ip_role_id = None
- self._page_no = None
- self._page_size = None
- self._pay_statuses = None
- self._pd_codes = None
- self._price_id = None
- self._price_policy_id = None
- self._settle_type = None
- self._start_month = None
- @property
- def ar_no(self):
- return self._ar_no
- @ar_no.setter
- def ar_no(self, value):
- self._ar_no = value
- @property
- def bill_invoice_link_statuses(self):
- return self._bill_invoice_link_statuses
- @bill_invoice_link_statuses.setter
- def bill_invoice_link_statuses(self, value):
- if isinstance(value, list):
- self._bill_invoice_link_statuses = list()
- for i in value:
- self._bill_invoice_link_statuses.append(i)
- @property
- def bill_types(self):
- return self._bill_types
- @bill_types.setter
- def bill_types(self, value):
- if isinstance(value, list):
- self._bill_types = list()
- for i in value:
- self._bill_types.append(i)
- @property
- def biz_type(self):
- return self._biz_type
- @biz_type.setter
- def biz_type(self, value):
- self._biz_type = value
- @property
- def ccy(self):
- return self._ccy
- @ccy.setter
- def ccy(self, value):
- self._ccy = value
- @property
- def end_month(self):
- return self._end_month
- @end_month.setter
- def end_month(self, value):
- self._end_month = value
- @property
- def inst_id(self):
- return self._inst_id
- @inst_id.setter
- def inst_id(self, value):
- self._inst_id = value
- @property
- def ip_role_id(self):
- return self._ip_role_id
- @ip_role_id.setter
- def ip_role_id(self, value):
- self._ip_role_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
- @property
- def pay_statuses(self):
- return self._pay_statuses
- @pay_statuses.setter
- def pay_statuses(self, value):
- if isinstance(value, list):
- self._pay_statuses = list()
- for i in value:
- self._pay_statuses.append(i)
- @property
- def pd_codes(self):
- return self._pd_codes
- @pd_codes.setter
- def pd_codes(self, value):
- if isinstance(value, list):
- self._pd_codes = list()
- for i in value:
- self._pd_codes.append(i)
- @property
- def price_id(self):
- return self._price_id
- @price_id.setter
- def price_id(self, value):
- self._price_id = value
- @property
- def price_policy_id(self):
- return self._price_policy_id
- @price_policy_id.setter
- def price_policy_id(self, value):
- self._price_policy_id = value
- @property
- def settle_type(self):
- return self._settle_type
- @settle_type.setter
- def settle_type(self, value):
- if isinstance(value, list):
- self._settle_type = list()
- for i in value:
- self._settle_type.append(i)
- @property
- def start_month(self):
- return self._start_month
- @start_month.setter
- def start_month(self, value):
- self._start_month = value
- def to_alipay_dict(self):
- params = dict()
- if self.ar_no:
- if hasattr(self.ar_no, 'to_alipay_dict'):
- params['ar_no'] = self.ar_no.to_alipay_dict()
- else:
- params['ar_no'] = self.ar_no
- if self.bill_invoice_link_statuses:
- if isinstance(self.bill_invoice_link_statuses, list):
- for i in range(0, len(self.bill_invoice_link_statuses)):
- element = self.bill_invoice_link_statuses[i]
- if hasattr(element, 'to_alipay_dict'):
- self.bill_invoice_link_statuses[i] = element.to_alipay_dict()
- if hasattr(self.bill_invoice_link_statuses, 'to_alipay_dict'):
- params['bill_invoice_link_statuses'] = self.bill_invoice_link_statuses.to_alipay_dict()
- else:
- params['bill_invoice_link_statuses'] = self.bill_invoice_link_statuses
- if self.bill_types:
- if isinstance(self.bill_types, list):
- for i in range(0, len(self.bill_types)):
- element = self.bill_types[i]
- if hasattr(element, 'to_alipay_dict'):
- self.bill_types[i] = element.to_alipay_dict()
- if hasattr(self.bill_types, 'to_alipay_dict'):
- params['bill_types'] = self.bill_types.to_alipay_dict()
- else:
- params['bill_types'] = self.bill_types
- if self.biz_type:
- if hasattr(self.biz_type, 'to_alipay_dict'):
- params['biz_type'] = self.biz_type.to_alipay_dict()
- else:
- params['biz_type'] = self.biz_type
- if self.ccy:
- if hasattr(self.ccy, 'to_alipay_dict'):
- params['ccy'] = self.ccy.to_alipay_dict()
- else:
- params['ccy'] = self.ccy
- if self.end_month:
- if hasattr(self.end_month, 'to_alipay_dict'):
- params['end_month'] = self.end_month.to_alipay_dict()
- else:
- params['end_month'] = self.end_month
- if self.inst_id:
- if hasattr(self.inst_id, 'to_alipay_dict'):
- params['inst_id'] = self.inst_id.to_alipay_dict()
- else:
- params['inst_id'] = self.inst_id
- if self.ip_role_id:
- if hasattr(self.ip_role_id, 'to_alipay_dict'):
- params['ip_role_id'] = self.ip_role_id.to_alipay_dict()
- else:
- params['ip_role_id'] = self.ip_role_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
- if self.pay_statuses:
- if isinstance(self.pay_statuses, list):
- for i in range(0, len(self.pay_statuses)):
- element = self.pay_statuses[i]
- if hasattr(element, 'to_alipay_dict'):
- self.pay_statuses[i] = element.to_alipay_dict()
- if hasattr(self.pay_statuses, 'to_alipay_dict'):
- params['pay_statuses'] = self.pay_statuses.to_alipay_dict()
- else:
- params['pay_statuses'] = self.pay_statuses
- if self.pd_codes:
- if isinstance(self.pd_codes, list):
- for i in range(0, len(self.pd_codes)):
- element = self.pd_codes[i]
- if hasattr(element, 'to_alipay_dict'):
- self.pd_codes[i] = element.to_alipay_dict()
- if hasattr(self.pd_codes, 'to_alipay_dict'):
- params['pd_codes'] = self.pd_codes.to_alipay_dict()
- else:
- params['pd_codes'] = self.pd_codes
- if self.price_id:
- if hasattr(self.price_id, 'to_alipay_dict'):
- params['price_id'] = self.price_id.to_alipay_dict()
- else:
- params['price_id'] = self.price_id
- if self.price_policy_id:
- if hasattr(self.price_policy_id, 'to_alipay_dict'):
- params['price_policy_id'] = self.price_policy_id.to_alipay_dict()
- else:
- params['price_policy_id'] = self.price_policy_id
- if self.settle_type:
- if isinstance(self.settle_type, list):
- for i in range(0, len(self.settle_type)):
- element = self.settle_type[i]
- if hasattr(element, 'to_alipay_dict'):
- self.settle_type[i] = element.to_alipay_dict()
- if hasattr(self.settle_type, 'to_alipay_dict'):
- params['settle_type'] = self.settle_type.to_alipay_dict()
- else:
- params['settle_type'] = self.settle_type
- if self.start_month:
- if hasattr(self.start_month, 'to_alipay_dict'):
- params['start_month'] = self.start_month.to_alipay_dict()
- else:
- params['start_month'] = self.start_month
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayBossFncApbillCustviewBatchqueryModel()
- if 'ar_no' in d:
- o.ar_no = d['ar_no']
- if 'bill_invoice_link_statuses' in d:
- o.bill_invoice_link_statuses = d['bill_invoice_link_statuses']
- if 'bill_types' in d:
- o.bill_types = d['bill_types']
- if 'biz_type' in d:
- o.biz_type = d['biz_type']
- if 'ccy' in d:
- o.ccy = d['ccy']
- if 'end_month' in d:
- o.end_month = d['end_month']
- if 'inst_id' in d:
- o.inst_id = d['inst_id']
- if 'ip_role_id' in d:
- o.ip_role_id = d['ip_role_id']
- if 'page_no' in d:
- o.page_no = d['page_no']
- if 'page_size' in d:
- o.page_size = d['page_size']
- if 'pay_statuses' in d:
- o.pay_statuses = d['pay_statuses']
- if 'pd_codes' in d:
- o.pd_codes = d['pd_codes']
- if 'price_id' in d:
- o.price_id = d['price_id']
- if 'price_policy_id' in d:
- o.price_policy_id = d['price_policy_id']
- if 'settle_type' in d:
- o.settle_type = d['settle_type']
- if 'start_month' in d:
- o.start_month = d['start_month']
- return o
|