优化日志的记录

This commit is contained in:
季圣华
2019-11-19 20:35:26 +08:00
parent 47c90a0e26
commit b186ae1636
53 changed files with 415 additions and 386 deletions

View File

@@ -50,7 +50,7 @@ public interface ICommonQuery {
* @param beanJson
* @return
*/
int update(String beanJson, Long id) throws Exception;
int update(String beanJson, Long id, HttpServletRequest request) throws Exception;
/**
* 删除数据
@@ -58,7 +58,7 @@ public interface ICommonQuery {
* @param id
* @return
*/
int delete(Long id) throws Exception;
int delete(Long id, HttpServletRequest request) throws Exception;
/**
* 批量删除数据
@@ -66,7 +66,7 @@ public interface ICommonQuery {
* @param ids
* @return
*/
int batchDelete(String ids) throws Exception;
int batchDelete(String ids, HttpServletRequest request) throws Exception;
/**
* 查询名称是否存在