Commit 8987cf96 authored by hubaoshan's avatar hubaoshan

jnp7sj

parent b58f7154
//package org.rcisoft.bus.bpnsypn.dao;
//
//import com.baomidou.mybatisplus.core.metadata.IPage;
//import org.apache.ibatis.annotations.Param;
//import org.rcisoft.bus.bpnsypn.entity.BPnSypn;
//import org.rcisoft.core.mapper.CyBaseMapper;
//import org.rcisoft.core.model.CyPageInfo;
//
//import java.util.List;
//
///**
// * Created with cy on 2024年5月11日 下午3:19:37.
// */
//
//public interface BPnSypnRepository extends CyBaseMapper<BPnSypn> {
//
//
// List<BPnSypn> queryBPnSypns(@Param("entity") BPnSypn bpnsypn);
//
// /**
// * 分页查询 bPnSypn
// *
// */
// IPage<BPnSypn> queryBPnSypnsPaged(CyPageInfo cyPageInfo, @Param("entity") BPnSypn bpnsypn);
//
// /** 验重
// * @description:
// * @author: gaoyu
// * @param:
// * @return:
// **/
// Integer querySomePn( BPnSypn bPnSypn);
//}
package org.rcisoft.bus.bpnsypn.dao;
import com.baomidou.mybatisplus.core.metadata.IPage;
......@@ -46,22 +14,8 @@ import java.util.List;
*/
public interface BPnSypnRepository extends CyBaseMapper<BPnSypn> {
List<BPnSypn> queryBPnSypns(@Param("entity") BPnSypn bPnSypn);
/**
* 分页查询 bPnSypn
*
*/
IPage<BPnSypn> queryBPnSypnsPaged(CyPageInfo cyPageInfo, @Param("entity") BPnSypn bPnSypn);
/** 验重
* @description:
* @author: gaoyu
* @param:
* @return:
**/
Integer querySomePn( BPnSypn bPnSypn);
}
package org.rcisoft.bus.bpnsypn.service.Impl;
package org.rcisoft.bus.bpnsypn.service.impl;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
......@@ -105,8 +105,7 @@ public class BPnSypnServiceImpl extends ServiceImpl<BPnSypnRepository, BPnSypn>
* @return
*/
@Override
public IPage<BPnSypn> findAllByPagination(CyPageInfo<BPnSypn> paginationUtility,
BPnSypn bPnSypn){
public IPage<BPnSypn> findAllByPagination(CyPageInfo<BPnSypn> paginationUtility, BPnSypn bPnSypn){
return baseMapper.queryBPnSypnsPaged(paginationUtility,bPnSypn);
}
......
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