2021与蓝度共同重构项目,服务端
liuhaonan
2022-11-10 6554fd4bf83e50d39fc75f1c4ac3fbf6675f1962
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.sandu.ximon.dao.domain;
 
import lombok.Data;
 
@Data
public class BroadcastV2FileEntity {
 
    private Integer fileId;
 
    private String filename;
 
    private Double fileSize;
 
    private Long originSize;
 
    private Long userId;
 
    private String username;
 
    private Long timestamp;
 
}