package com.yeshi.buwan.domain.special;
|
|
import org.springframework.data.annotation.Id;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
|
import java.util.Date;
|
|
/**
|
* 搜索专题位置
|
*/
|
@Document(collection = "searchSpecialPosition")
|
public class SearchSpecialPosition {
|
|
@Id
|
//位置主键ID
|
private String id;
|
//专题名称
|
private String name;
|
//系统ID
|
private String systemId;
|
private Date createTime;
|
private Date updateTime;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getSystemId() {
|
return systemId;
|
}
|
|
public void setSystemId(String systemId) {
|
this.systemId = systemId;
|
}
|
}
|