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 { IPage selectPostPage(IPage page, PostSelectVO postSelectVO); String getPostIds(String tenantId, String postNames); String getPostIdsByFuzzy(String tenantId, String postNames); List getPostNames(String postIds); void checkExistPostNameOrCode(Post post); BladeFile importPost(List data); void insertNewPost(Post post); Boolean removePost(List ids, Integer type); }