package com.gkhy.exam.system.service.useSealApply;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.gkhy.exam.common.api.CommonPage;
|
import com.gkhy.exam.common.api.CommonResult;
|
import com.gkhy.exam.system.domain.UseSealApply;
|
import com.gkhy.exam.system.domain.UseSealApplyFlow;
|
|
public interface UseSealApplyService extends IService<UseSealApply> {
|
CommonPage selectUseSealApplyList(UseSealApply useSealApply);
|
|
CommonResult insertUseSealApply(UseSealApply useSealApply);
|
|
CommonResult updateUseSealApply(UseSealApply useSealApply);
|
|
CommonResult deletedUseSealApply(Integer applyId);
|
|
CommonResult approveUseSealApply(UseSealApplyFlow useSealApplyFlow);
|
|
CommonResult applyList(Integer userId);
|
|
}
|