blob: 64225ee817e7e7a024b3f1113a43c8fab7755872 [file] [log] [blame]
package com.example.g8backend.entity;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.time.LocalDateTime;
@Data
@TableName("user_stats")
public class UserStats {
@TableId
private Long userId;
private String passkey;
private double total_upload;
private double total_download;
private LocalDateTime last_update_time;
}