SellerParam.php 413 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * 卖家信息
  4. * @author auto create
  5. */
  6. class SellerParam
  7. {
  8. /**
  9. * 操作类型
  10. **/
  11. public $action_type;
  12. /**
  13. * 手机号
  14. **/
  15. public $mobile;
  16. /**
  17. * 商家名称
  18. **/
  19. public $name;
  20. /**
  21. * 昵称
  22. **/
  23. public $nick;
  24. /**
  25. * 卖家ID
  26. **/
  27. public $seller_id;
  28. /**
  29. * 开店来源
  30. **/
  31. public $source;
  32. /**
  33. * 原始手机号
  34. **/
  35. public $src_mobile;
  36. }
  37. ?>