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