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;
|
}
|
}
|