package cn.com.lzt.usercertificate.service; import cn.com.lzt.usercertificate.entity.UserCertificateEntity; import org.jeecgframework.core.common.service.CommonService; import java.io.Serializable; public interface UserCertificateServiceI extends CommonService{ public void delete(UserCertificateEntity entity) throws Exception; public Serializable save(UserCertificateEntity entity) throws Exception; public void saveOrUpdate(UserCertificateEntity entity) throws Exception; }