This commit is contained in:
2020-10-14 09:59:42 +08:00
parent f895e58ca3
commit 6b210915bf
104 changed files with 0 additions and 71125 deletions
@@ -1,19 +0,0 @@
package com.yaoyuan.jiscuss.service;
import java.util.List;
import java.util.Map;
import com.yaoyuan.jiscuss.entity.Post;
import com.yaoyuan.jiscuss.entity.custom.PostCustom;
public interface IPostsService {
List<Post> getAllList();
Post insert(Post post);
List<Post> findOneBy(Integer id);
List<PostCustom> findPostCustomById(Integer id);
Post findOneByid(Integer parentId);
}