TBExchangeAccountLogServiceI.java 521 B

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