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