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