15 lines
177 B
PHP
Raw Permalink Normal View History

2024-09-29 15:43:18 +08:00
<?php
/**
* 发货信息,目前只记录了发货方式
* @author auto create
*/
class ShipInfo
{
/**
* 发货方式(小写)
**/
public $transport_type;
}
?>