All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.weibo.data.entity.Channel Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.weibo.data.entity;

import com.haoxuer.discover.data.annotations.FormAnnotation;
import com.haoxuer.discover.data.entity.AbstractEntity;

import javax.persistence.Entity;
import javax.persistence.Table;

@FormAnnotation(title = "频道",add = "添加频道",list = "频道",update = "更新频道")
@Entity
@Table(name = "weibo_channel")
public class Channel extends AbstractEntity {

  private String name;

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy