BudgetPostNumDetailServiceI.java 515 B

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