admin
2021-09-03 b41a6efe17ba61d150c5a9b7309651cebae54e0d
src/main/java/com/yeshi/buwan/domain/live/TVLiveCategory.java
@@ -1,5 +1,6 @@
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;
@@ -11,11 +12,15 @@
@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;
@@ -66,4 +71,12 @@
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
    public String getSystemId() {
        return systemId;
    }
    public void setSystemId(String systemId) {
        this.systemId = systemId;
    }
}