BudgetEntityServiceI.java 472 B

1234567891011121314151617
  1. package cn.com.lzt.budget.entity.service;
  2. import cn.com.lzt.budget.entity.entity.BudgetEntity;
  3. import org.jeecgframework.core.common.service.CommonService;
  4. import java.io.Serializable;
  5. public interface BudgetEntityServiceI extends CommonService{
  6. public void delete(BudgetEntity entity) throws Exception;
  7. public Serializable save(BudgetEntity entity) throws Exception;
  8. public void saveOrUpdate(BudgetEntity entity) throws Exception;
  9. void autoGen();
  10. }