Ai_GirlFriend/xunifriend_RaeeC/application/common/model/UserBondConfig.php
2026-01-31 19:15:41 +08:00

30 lines
382 B
PHP

<?php
namespace app\common\model;
use think\Db;
use think\Model;
class UserBondConfig extends Model
{
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
public static function init()
{
}
}