package com.crm.custom.service; import com.crm.rely.backend.core.dto.base.ResultWithPagerDto; import com.crm.rely.backend.core.entity.base.SingleLongEntity; import com.crm.rely.backend.core.exception.ServiceException; import com.crm.rely.backend.model.dto.golden.question.GoldenRewardQuestionListDto; import com.crm.rely.backend.model.entity.golden.question.GoldenRewardQuestionAddEntity; import com.crm.rely.backend.model.entity.golden.question.GoldenRewardQuestionDeleteEntitys; import com.crm.rely.backend.model.entity.golden.question.GoldenRewardQuestionSearchEntity; import com.crm.rely.backend.model.entity.golden.question.GoldenRewardQuestionUpdateEntity; public interface GoldenRewardQuestionService { void add(GoldenRewardQuestionAddEntity entity) throws ServiceException; void delete(GoldenRewardQuestionDeleteEntitys entitys) throws ServiceException; void update(GoldenRewardQuestionUpdateEntity entity) throws ServiceException; ResultWithPagerDto searchPageList(GoldenRewardQuestionSearchEntity entity) throws ServiceException; GoldenRewardQuestionListDto searchSingle(SingleLongEntity entity) throws ServiceException; }