| 123456789101112131415161718192021 |
- package cn.com.lzt.warehouse.service;
- import cn.com.lzt.warehouse.entity.WarehouseEntity;
- import org.jeecgframework.core.common.service.CommonService;
- import java.io.Serializable;
- public interface WarehouseServiceI extends CommonService{
-
- public void delete(WarehouseEntity entity) throws Exception;
-
- public Serializable save(WarehouseEntity entity) throws Exception;
-
- public void saveOrUpdate(WarehouseEntity entity) throws Exception;
-
- /**
- * 自定义按钮-[停用仓库]业务处理
- * @param id
- * @return
- */
- public void doBtnenableBus(WarehouseEntity t) throws Exception;
- }
|