| 123456789101112131415161718192021222324252627282930313233 |
- package com.jeecg.qianbao.service;
- import com.jeecg.qianbao.entity.HrQianbaoEntity;
- import org.jeecgframework.core.common.service.CommonService;
- import java.io.Serializable;
- public interface HrQianbaoServiceI extends CommonService{
-
- public <T> void delete(T entity);
-
- public <T> Serializable save(T entity);
-
- public <T> void saveOrUpdate(T entity);
-
- /**
- * 默认按钮-sql增强-新增操作
- * @param id
- * @return
- */
- public boolean doAddSql(HrQianbaoEntity t);
- /**
- * 默认按钮-sql增强-更新操作
- * @param id
- * @return
- */
- public boolean doUpdateSql(HrQianbaoEntity t);
- /**
- * 默认按钮-sql增强-删除操作
- * @param id
- * @return
- */
- public boolean doDelSql(HrQianbaoEntity t);
- }
|