package com.yaoyuan.jiscuss.service; import com.yaoyuan.jiscuss.entity.Post; import com.yaoyuan.jiscuss.entity.custom.PostCustom; import java.util.List; public interface IPostsService { List getAllList(); Post insert(Post post); List findOneBy(Integer id); List findPostCustomById(Integer id); Post findOneByid(Integer parentId); }