WarehouseServiceI.java 604 B

123456789101112131415161718192021
  1. package cn.com.lzt.warehouse.service;
  2. import cn.com.lzt.warehouse.entity.WarehouseEntity;
  3. import org.jeecgframework.core.common.service.CommonService;
  4. import java.io.Serializable;
  5. public interface WarehouseServiceI extends CommonService{
  6. public void delete(WarehouseEntity entity) throws Exception;
  7. public Serializable save(WarehouseEntity entity) throws Exception;
  8. public void saveOrUpdate(WarehouseEntity entity) throws Exception;
  9. /**
  10. * 自定义按钮-[停用仓库]业务处理
  11. * @param id
  12. * @return
  13. */
  14. public void doBtnenableBus(WarehouseEntity t) throws Exception;
  15. }