支付回调提交

This commit is contained in:
wong
2025-09-24 15:03:34 +08:00
parent 55be0c18e2
commit 1cc5605291
2 changed files with 83 additions and 129 deletions

View File

@@ -3,18 +3,12 @@
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';
}