Files
cunkebao_v3/Server/application/store/model/TrafficUsageLog.php

14 lines
239 B
PHP
Raw Normal View History

2025-04-23 12:01:49 +08:00
<?php
namespace app\store\model;
use think\Model;
class TrafficUsageLog extends Model
{
// 自动转换时间为时间戳
protected $type = [
'createTime' => 'timestamp',
'updateTime' => 'timestamp',
];
}