package com.hai.model; import com.hai.entity.CmsContent; import com.hai.entity.CmsPatch; import java.util.List; /** * @ClassName: CmsContentModel * @Description: 内容管理 内容模型 * @author: gongjia * @date: 2019/10/31 12:40 * @Copyright: 2019 www.shinwoten.com Inc. All rights reserved. */ public class CmsContentModel extends CmsContent { private String categoryName; private List pictures; private List musics; private List videos; private List documents; private List others; public String getCategoryName() { return categoryName; } public void setCategoryName(String categoryName) { this.categoryName = categoryName; } public List getPictures() { return pictures; } public void setPictures(List pictures) { this.pictures = pictures; } public List getMusics() { return musics; } public void setMusics(List musics) { this.musics = musics; } public List getVideos() { return videos; } public void setVideos(List videos) { this.videos = videos; } public List getDocuments() { return documents; } public void setDocuments(List documents) { this.documents = documents; } public List getOthers() { return others; } public void setOthers(List others) { this.others = others; } }