- package cn.com.lzt.budget.post.service;
- import cn.com.lzt.budget.post.entity.BudgetPostEntity;
- import org.jeecgframework.core.common.service.CommonService;
- import java.io.Serializable;
- public interface BudgetPostServiceI extends CommonService{
-
- public void delete(BudgetPostEntity entity) throws Exception;
-
- public Serializable save(BudgetPostEntity entity) throws Exception;
-
- public void saveOrUpdate(BudgetPostEntity entity) throws Exception;
-
- }
|