REAPI/extend/sdk/taobao/top/domain/UserInfoDto.php
2024-09-29 15:43:18 +08:00

30 lines
556 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 发货人信息
* @author auto create
*/
class UserInfoDto
{
/**
* 发货地址需要通过<a href="http://open.taobao.com/doc2/detail.htm?spm=a219a.7629140.0.0.3OFCPk&treeId=17&articleId=104860&docType=1">search接口</a>
**/
public $address;
/**
* 手机号码手机号和固定电话不能同时为空长度小于20
**/
public $mobile;
/**
* 姓名长度小于40
**/
public $name;
/**
* 固定电话手机号和固定电话不能同时为空长度小于20
**/
public $phone;
}
?>