20 lines
186 B
PHP
20 lines
186 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* -
|
||
|
* @author auto create
|
||
|
*/
|
||
|
class ConsignDTO
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 发货文案描述
|
||
|
**/
|
||
|
public $consign_desc;
|
||
|
|
||
|
/**
|
||
|
* 物流发货单号
|
||
|
**/
|
||
|
public $lp_order_id;
|
||
|
}
|
||
|
?>
|