nk-lihaink-cn/app/api/model/ProductOrderLog.php
2023-02-18 10:52:45 +08:00

18 lines
321 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 时间2023年02月17日
* 作者:墨楠小
* 邮箱monanxiao@qq.com
* 商品订单日志模型
* 订单快照模型
*
*/
namespace app\api\model;
use think\Model;
class ProductOrderLog extends Model
{
// 设置当前模型的数据库连接
protected $connection = 'shop';
}