Files
cunkebao_v3/Server/application/common/model/DeviceWechatLogin.php
2025-04-16 17:14:48 +08:00

20 lines
398 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\common\model;
use think\Model;
/**
* 微信好友模型类
*/
class DeviceWechatLogin extends Model
{
// 登录日志最新登录 alive = 1旧数据全部设置0
protected $name = 'device_wechat_login';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
}