InvoiceVo.php 406 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * result
  4. * @author auto create
  5. */
  6. class InvoiceVo
  7. {
  8. /**
  9. * 银行账户
  10. **/
  11. public $account;
  12. /**
  13. * 企业注册地址
  14. **/
  15. public $address;
  16. /**
  17. * 开户行
  18. **/
  19. public $bank_name;
  20. /**
  21. * 联系方式
  22. **/
  23. public $contact;
  24. /**
  25. * 税号
  26. **/
  27. public $duty_para;
  28. /**
  29. * 备注
  30. **/
  31. public $remark;
  32. /**
  33. * 发票抬头
  34. **/
  35. public $title;
  36. }
  37. ?>