Commit ca990b1b authored by ysongq's avatar ysongq

Merge remote-tracking branch 'origin/dm_dev' into dm_dev

parents aa0a69c8 cc0eb1f6
package com.jz.dm.config; package com.jz.dm.config;
import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor; import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.extension.plugins.pagination.optimize.JsqlParserCountOptimize; import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
import org.mybatis.spring.annotation.MapperScan; import org.mybatis.spring.annotation.MapperScan;
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Configuration;
...@@ -18,7 +19,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement; ...@@ -18,7 +19,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement;
@MapperScan("com.jz.dm.mapper") @MapperScan("com.jz.dm.mapper")
public class MybatisPlusConfig { public class MybatisPlusConfig {
@Bean /* @Bean
public PaginationInterceptor paginationInterceptor() { public PaginationInterceptor paginationInterceptor() {
PaginationInterceptor paginationInterceptor = new PaginationInterceptor(); PaginationInterceptor paginationInterceptor = new PaginationInterceptor();
// 设置请求的页面大于最大页后操作, true调回到首页,false 继续请求 默认false // 设置请求的页面大于最大页后操作, true调回到首页,false 继续请求 默认false
...@@ -29,11 +30,11 @@ public class MybatisPlusConfig { ...@@ -29,11 +30,11 @@ public class MybatisPlusConfig {
paginationInterceptor.setCountSqlParser(new JsqlParserCountOptimize(true)); paginationInterceptor.setCountSqlParser(new JsqlParserCountOptimize(true));
return paginationInterceptor; return paginationInterceptor;
}
/* @Bean
public MybatisPlusInterceptor mybatisPlusInterceptor(){
MybatisPlusInterceptor plusInterceptor =new MybatisPlusInterceptor();
// plusInterceptor.addInnerInterceptor();
return plusInterceptor;
}*/ }*/
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor() {
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
return interceptor;
}
} }
...@@ -160,7 +160,6 @@ public class ApiInterfaceServiceImpl implements ApiInterfaceService { ...@@ -160,7 +160,6 @@ public class ApiInterfaceServiceImpl implements ApiInterfaceService {
} }
/** /**
* 删除API信息 * 删除API信息
*
* @param apiKey * @param apiKey
* @return * @return
*/ */
...@@ -356,6 +355,7 @@ public class ApiInterfaceServiceImpl implements ApiInterfaceService { ...@@ -356,6 +355,7 @@ public class ApiInterfaceServiceImpl implements ApiInterfaceService {
} }
UpdateWrapper<ApiInterface> updateWra = new UpdateWrapper<>(); UpdateWrapper<ApiInterface> updateWra = new UpdateWrapper<>();
updateWra.set("is_send_bank", 0); updateWra.set("is_send_bank", 0);
updateWra.eq("id",apiInterface.getId());
if (apiInterfaceMapper.update(null, updateWra) > 0) { if (apiInterfaceMapper.update(null, updateWra) > 0) {
return Result.of_success(ResultMsg.UPDATE_SUCCESS); return Result.of_success(ResultMsg.UPDATE_SUCCESS);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment