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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.yeshi.buwan.domain.jump;
 
import com.google.gson.annotations.Expose;
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 = "jumpDetail")
public class JumpDetail {
    @Expose
    @Indexed
    @Field
    private JumpTypeEnum type;
    @Expose
    @Field
    private String activity;
    @Expose
    @Field
    private String controller;
    @Expose
    private Boolean needLogin;
 
 
    public JumpTypeEnum getType() {
        return type;
    }
 
    public void setType(JumpTypeEnum type) {
        this.type = type;
    }
 
    public String getActivity() {
        return activity;
    }
 
    public void setActivity(String activity) {
        this.activity = activity;
    }
 
    public String getController() {
        return controller;
    }
 
    public void setController(String controller) {
        this.controller = controller;
    }
 
    public Boolean getNeedLogin() {
        return needLogin;
    }
 
    public void setNeedLogin(Boolean needLogin) {
        this.needLogin = needLogin;
    }
}