支付提交

This commit is contained in:
wong
2025-09-23 16:43:18 +08:00
parent a8a9cf76df
commit 7ed368a137
7 changed files with 778 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace app\common\model;
use think\Model;
use think\model\concern\SoftDelete;
class Order extends Model
{
use SoftDelete;
// 设置数据表名
protected $name = 'order';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
}