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