admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
src/main/java/com/yeshi/buwan/domain/HotVideoType.java
@@ -1,53 +1,64 @@
package com.yeshi.buwan.domain;
import com.google.gson.annotations.Expose;
import com.yeshi.buwan.domain.system.SystemInfo;
public class HotVideoType {
   public HotVideoType(String id) {
      this.id = id;
   }
    public HotVideoType(String id) {
        this.id = id;
    }
   @Expose
   private String id;
   @Expose
   private VideoType type;
   private int addType;// 0-系统 1-管理员
   private String createtime;
    @Expose
    private String id;
    @Expose
    private VideoType type;
    private int addType;// 0-系统 1-管理员
    private String createtime;
   public String getId() {
      return id;
   }
    private SystemInfo system;
   public HotVideoType() {
      super();
   }
    public SystemInfo getSystem() {
        return system;
    }
   public void setId(String id) {
      this.id = id;
   }
    public void setSystem(SystemInfo system) {
        this.system = system;
    }
   public VideoType getType() {
      return type;
   }
    public String getId() {
        return id;
    }
   public void setType(VideoType type) {
      this.type = type;
   }
    public HotVideoType() {
        super();
    }
   public int getAddType() {
      return addType;
   }
    public void setId(String id) {
        this.id = id;
    }
   public void setAddType(int addType) {
      this.addType = addType;
   }
    public VideoType getType() {
        return type;
    }
   public String getCreatetime() {
      return createtime;
   }
    public void setType(VideoType type) {
        this.type = type;
    }
   public void setCreatetime(String createtime) {
      this.createtime = createtime;
   }
    public int getAddType() {
        return addType;
    }
    public void setAddType(int addType) {
        this.addType = addType;
    }
    public String getCreatetime() {
        return createtime;
    }
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
}