| | |
| | | import com.gkhy.exam.common.api.CommonPage; |
| | | import com.gkhy.exam.common.api.CommonResult; |
| | | import com.gkhy.exam.system.domain.ItemReview; |
| | | import com.gkhy.exam.system.domain.ItemReviewUser; |
| | | |
| | | public interface ItemReviewService extends IService<ItemReview> { |
| | | CommonPage selectItemList(ItemReview itemReview); |
| | |
| | | CommonResult updateItem(ItemReview item); |
| | | |
| | | CommonResult deletedItem(Integer itemReviewId); |
| | | |
| | | CommonResult sendItem(Integer itemReviewId); |
| | | |
| | | CommonResult approvalList(Integer userId); |
| | | |
| | | CommonResult approval(ItemReviewUser itemReviewUser); |
| | | } |