package com.fastbee.iot.model; import com.fastbee.iot.domain.News; import java.util.ArrayList; import java.util.List; /** * 产品分类的Id和名称输出 * * @author kerwincui * @date 2021-12-16 */ public class CategoryNews { private Long categoryId; private String categoryName; private List newsList; public CategoryNews(){ this.newsList=new ArrayList<>(); } public Long getCategoryId() { return categoryId; } public void setCategoryId(Long categoryId) { this.categoryId = categoryId; } public String getCategoryName() { return categoryName; } public void setCategoryName(String categoryName) { this.categoryName = categoryName; } public List getNewsList() { return newsList; } public void setNewsList(List newsList) { this.newsList = newsList; } }