NewDiverseYouthNightSchool/addons/xilufitness/model/OrderVerificationRecords.php
2025-08-01 11:39:06 +08:00

26 lines
454 B
PHP

<?php
namespace addons\xilufitness\model;
use addons\xilufitness\traits\BaseModel;
use think\Model;
class OrderVerificationRecords extends Model
{
use BaseModel;
// 表名
protected $name = 'xilufitness_order_verification_records';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'integer';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $deleteTime = 'deletetime';
}