package com.xcgl.device.service; import com.xcgl.device.entity.DeviceEntity; import org.jeecgframework.core.common.service.CommonService; import java.io.Serializable; public interface DeviceServiceI extends CommonService{ public void delete(DeviceEntity entity) throws Exception; public Serializable save(DeviceEntity entity) throws Exception; public void saveOrUpdate(DeviceEntity entity) throws Exception; }