admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.yeshi.buwan.videos.acFun;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Document;
import org.springframework.data.mongodb.core.mapping.Field;
 
@Document(collection = "acfunVideoMap")
public class AcfunVideoMap {
    @Id
    private String id;
    @Indexed
    @Field
    private Long videoId;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Long getVideoId() {
        return videoId;
    }
 
    public void setVideoId(Long videoId) {
        this.videoId = videoId;
    }
 
}