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