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.SealType;
|
|
public interface SealTypeService extends IService<SealType> {
|
CommonPage selectSealTypeList(SealType sealType);
|
|
CommonResult insertSealType(SealType sealType);
|
|
CommonResult updateSealType(SealType sealType);
|
|
CommonResult deletedSealType(Integer sealTypeId);
|
}
|