| | |
| | | import com.gkhy.safePlatform.commons.vo.ResultVO; |
| | | import com.gkhy.safePlatform.commons.query.PageQuery; |
| | | import com.gkhy.safePlatform.targetDuty.model.dto.req.RewardPunishmentStandardQueryCriteria; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | |
| | | |
| | |
| | | * @author xurui |
| | | * @since 2022-07-21 10:20:10 |
| | | */ |
| | | public interface RewardPunishmentStandardService extends IService<RewardPunishmentStandard> { |
| | | public interface RewardPunishmentStandardService { |
| | | ResultVO queryAll(PageQuery<RewardPunishmentStandardQueryCriteria> pageQuery); |
| | | |
| | | List<RewardPunishmentStandard> queryAll(RewardPunishmentStandardQueryCriteria criteria); |
| | | |
| | | void importData(MultipartFile file) throws IOException; |
| | | |
| | | void delete(Long[] ids); |
| | | |
| | | void exportTemplate() throws IOException; |
| | | |
| | | void exportData(RewardPunishmentStandardQueryCriteria queryCriteria) throws IOException; |
| | | } |