| | |
| | | import org.springframework.data.annotation.Transient; |
| | | import org.springframework.data.mongodb.core.mapping.Document; |
| | | |
| | | import javax.xml.parsers.SAXParserFactory; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | //位置ID |
| | | private String positionId; |
| | | private Integer weight; |
| | | //显示名称 |
| | | private String showName; |
| | | private String icon; |
| | | private Date createTime; |
| | | private Date updateTime; |
| | |
| | | public void setSpecial(SearchSpecial special) { |
| | | this.special = special; |
| | | } |
| | | |
| | | public String getShowName() { |
| | | return showName; |
| | | } |
| | | |
| | | public void setShowName(String showName) { |
| | | this.showName = showName; |
| | | } |
| | | } |