35 lines
494 B
PHP
35 lines
494 B
PHP
<?php
|
|
|
|
/**
|
|
* null
|
|
* @author auto create
|
|
*/
|
|
class DeliveryRequirements
|
|
{
|
|
|
|
/**
|
|
* 奇门仓储字段,说明,string(50),,
|
|
**/
|
|
public $delivery_type;
|
|
|
|
/**
|
|
* 奇门仓储字段,说明,string(50),,
|
|
**/
|
|
public $schedule_day;
|
|
|
|
/**
|
|
* 奇门仓储字段,说明,string(50),,
|
|
**/
|
|
public $schedule_end_time;
|
|
|
|
/**
|
|
* 奇门仓储字段,说明,string(50),,
|
|
**/
|
|
public $schedule_start_time;
|
|
|
|
/**
|
|
* 奇门仓储字段,说明,string(50),,
|
|
**/
|
|
public $schedule_type;
|
|
}
|
|
?>
|