Ai_GirlFriend/xunifriend_RaeeC/application/common/model/ClothesLog.php

24 lines
419 B
PHP
Raw Normal View History

2026-01-31 19:15:41 +08:00
<?php
namespace app\common\model;
use think\Model;
/**
* 会员换装记录
*/
class ClothesLog extends Model
{
// 表名
protected $name = 'user_clothes_log';
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = '';
// 追加属性
protected $append = [
];
}