20 lines
220 B
PHP
20 lines
220 B
PHP
<?php
|
||
|
||
/**
|
||
* 配送员信息
|
||
* @author auto create
|
||
*/
|
||
class DeliveryTopDTO
|
||
{
|
||
|
||
/**
|
||
* 配送员姓名
|
||
**/
|
||
public $name;
|
||
|
||
/**
|
||
* 配送员电话,支持手机、座机、400电话
|
||
**/
|
||
public $phone;
|
||
}
|
||
?>
|