blob: 64225ee817e7e7a024b3f1113a43c8fab7755872 [file] [log] [blame]
wuchimedes22ee83c2025-04-25 00:17:47 +08001package com.example.g8backend.entity;
2
3import com.baomidou.mybatisplus.annotation.TableId;
4import com.baomidou.mybatisplus.annotation.TableName;
5import lombok.Data;
6
7import java.time.LocalDateTime;
8
9@Data
10@TableName("user_stats")
11public class UserStats {
12 @TableId
13 private Long userId;
14 private String passkey;
15 private double total_upload;
16 private double total_download;
17 private LocalDateTime last_update_time;
18}