提交 b888f898 authored 作者: huyufan's avatar huyufan

修复BUG

上级 2a83987d
...@@ -17,5 +17,5 @@ import org.apache.ibatis.annotations.SelectProvider; ...@@ -17,5 +17,5 @@ import org.apache.ibatis.annotations.SelectProvider;
public interface OwnerBindCardRecordMapper extends BaseMapper<OwnerBindCardRecord> { public interface OwnerBindCardRecordMapper extends BaseMapper<OwnerBindCardRecord> {
@SelectProvider(type = OwnerBindCardRecordSqlProvider.class, method = "ownerBindCardPageList") @SelectProvider(type = OwnerBindCardRecordSqlProvider.class, method = "ownerBindCardPageList")
IPage<OwnerBindCardRecordVO> ownerBindCardPageList(PageOwnerBindCardRecordListParam param); IPage<OwnerBindCardRecordVO> ownerBindCardPageList(Page<OwnerBindCardRecordVO> page,PageOwnerBindCardRecordListParam param);
} }
\ No newline at end of file
package com.clx.performance.sqlProvider; package com.clx.performance.sqlProvider;
import com.clx.performance.param.pc.PageOwnerAccountListParam; import com.clx.performance.param.pc.PageOwnerBindCardRecordListParam;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.jdbc.SQL; import org.apache.ibatis.jdbc.SQL;
public class OwnerBindCardRecordSqlProvider { public class OwnerBindCardRecordSqlProvider {
public String ownerBindCardPageList(@Param("param") PageOwnerAccountListParam param) { public String ownerBindCardPageList(@Param("param") PageOwnerBindCardRecordListParam param) {
String sql = new SQL() {{ String sql = new SQL() {{
SELECT("a.id, a.owner_user_no," + SELECT("a.id, a.owner_user_no," +
" a.owner_user_name, a.owner_type, a.owner_bank, " + " a.owner_user_name, a.owner_type, a.owner_bank, " +
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论