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