| | |
| | | package com.yeshi.buwan.domain.live; |
| | | |
| | | import com.google.gson.annotations.Expose; |
| | | import org.springframework.data.annotation.Id; |
| | | import org.springframework.data.mongodb.core.mapping.Document; |
| | | |
| | |
| | | @Document(collection = "tvLiveCategory") |
| | | public class TVLiveCategory { |
| | | |
| | | @Expose |
| | | @Id |
| | | private String id; |
| | | @Expose |
| | | private String name; |
| | | @Expose |
| | | private String icon; |
| | | private Integer weight; |
| | | private String systemId; |
| | | private Date createTime; |
| | | private Date updateTime; |
| | | |
| | |
| | | public void setUpdateTime(Date updateTime) { |
| | | this.updateTime = updateTime; |
| | | } |
| | | |
| | | public String getSystemId() { |
| | | return systemId; |
| | | } |
| | | |
| | | public void setSystemId(String systemId) { |
| | | this.systemId = systemId; |
| | | } |
| | | } |