Files
amb_wechatapp/application/common/model/app/physical/OrderExpressLog.php
T

19 lines
372 B
PHP

<?php
namespace app\common\model\app\physical;
use think\Model;
/**
* 实物商品物流信息模型
*/
class OrderExpressLog extends Model
{
protected $name = 'app_physical_order_express_log';
protected $autoWriteTimestamp = 'integer';
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = false;
}