DingTaxUserInfoDTO.php 332 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 运营数据
  4. * @author auto create
  5. */
  6. class DingTaxUserInfoDTO
  7. {
  8. /**
  9. * Y/N;Y代表新增用户,N代表存量用户
  10. **/
  11. public $new_user;
  12. /**
  13. * 自然人/企业/个体户
  14. **/
  15. public $taxation_type;
  16. /**
  17. * 手机号
  18. **/
  19. public $user_mobile;
  20. /**
  21. * CW/FR
  22. **/
  23. public $user_role;
  24. }
  25. ?>