yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.qianwen.smartman.modules.system.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import java.util.List;
import com.qianwen.core.mp.base.BaseService;
import com.qianwen.core.oss.model.BladeFile;
import com.qianwen.smartman.modules.system.entity.Post;
import com.qianwen.smartman.modules.system.excel.PostImport;
import com.qianwen.smartman.modules.system.vo.PostDetailVO;
import com.qianwen.smartman.modules.system.vo.PostSelectVO;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/service/IPostService.class */
public interface IPostService extends BaseService<Post> {
    IPage<PostDetailVO> selectPostPage(IPage<PostDetailVO> page, PostSelectVO postSelectVO);
 
    String getPostIds(String tenantId, String postNames);
 
    String getPostIdsByFuzzy(String tenantId, String postNames);
 
    List<String> getPostNames(String postIds);
 
    void checkExistPostNameOrCode(Post post);
 
    BladeFile importPost(List<PostImport> data);
 
    void insertNewPost(Post post);
 
    Boolean removePost(List<Long> ids, Integer type);
}