querywrapper 다중 조건 조회
21654 단어 프레임
/**
*
* @return
*/
@ApiResponses({@ApiResponse(code = 200, message = " ", response = SourceMateria.class)})
@ApiOperation(value=" ")
@GetMapping
public AjaxResult selectAll(@RequestParam(value = "pageNo", required = false, defaultValue = "1") Integer pageNo,
@RequestParam(value = "pageSize", required = false, defaultValue = "20") Integer pageSize,
@ApiParam(name="id", value=" id( id )")@RequestParam(value = "id", required=false)Long id,
@ApiParam(name="screenId", value=" :1001= ,1002= ,1003= ,1004= ")@RequestParam(value = "screenId", required=false)Integer screenId,
@ApiParam(name="typeId", value=" id( )")@RequestParam(value = "typeId", required=false)Long typeId,
@ApiParam(name="title", value=" ( )")@RequestParam(value = "title", required=false)String title) {
Page<SourceMateria> page = new Page<SourceMateria>(pageNo, pageSize);
QueryWrapper<SourceMateria> queryWrapper=new QueryWrapper<>();
if(id!=null&&id>0){
queryWrapper=queryWrapper.eq("t_source_materia.id",id);
//
SourceMateria sourceMateria = sourceMateriaService.selectById(id);
sourceMateria.setTraffic(sourceMateria.getTraffic()+1);
sourceMateriaService.updateById(sourceMateria);
}
if(typeId!=null&&typeId>0){
queryWrapper=queryWrapper.eq("t_source_materia_type.id",typeId);
}
if(title!=null&&title!=""){
queryWrapper=queryWrapper.like("t_source_materia.title",title);
}
if(screenId!=null&&screenId>0){
switch (screenId){
case 1001: queryWrapper=queryWrapper.orderByDesc("create_time");
break;
case 1002: queryWrapper=queryWrapper.orderByDesc("share_number");
break;
case 1003: queryWrapper=queryWrapper.eq("smart_coin",0);
break;
case 1004: queryWrapper=queryWrapper.gt("smart_coin",0);
break;
default:
break;
}
}
IPage<SourceMateria> pageInfo = sourceMateriaService.restListPage(queryWrapper,page);
List<SourceMateriaType> sourceMateriaTypes = sourceMateriaTypeService.selectList(null);
Map<String, Object> map = new HashMap<>();
map.put("pageInfo",new PageInfo(pageInfo));
map.put("allType",sourceMateriaTypes);
return AjaxResult.success(map);
}
IService :
/**
*
* @param queryWrapper
* @param page
* @return
*/
IPage<SourceMateria> restListPage(QueryWrapper<SourceMateria> queryWrapper, IPage page);
ServiceImpl :
/**
*
* @param queryWrapper
* @param page
* @return
*/
@Override
public IPage<SourceMateria> restListPage(QueryWrapper<SourceMateria> queryWrapper, IPage page) {
return page.setRecords(sourceMateriaMapper.restListPage(queryWrapper,page));
}
Mapper :
List<SourceMateria> restListPage(@Param(Constants.WRAPPER) QueryWrapper<SourceMateria> queryWrapper, IPage<SourceMateria> page);
XML :
<select id="restListPage" resultType="com.mbyte.easy.admin.entity.SourceMateria">
SELECT
t_source_materia.id,
t_source_materia.source_id,
t_source_materia_type.name as name,
t_source_materia.Icon,
t_source_materia.title,
t_source_materia.content,
t_source_materia.video_url,
t_source_materia.smart_coin,
t_source_materia.traffic,
t_source_materia.share_number,
t_source_materia.is_goods,
t_source_materia.create_time,
t_source_materia.update_time
FROM
t_source_materia
INNER JOIN t_source_materia_type ON t_source_materia.source_id = t_source_materia_type.id
${ew.customSqlSegment} //querywrapper
</select>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Pytest 테스트 프레임워크 기본 사용 방법 상세 정보pytest 소개 2. 매개 변수화를 지원하여 테스트할 테스트 용례를 세밀하게 제어할 수 있다. 3. 간단한 단원 테스트와 복잡한 기능 테스트를 지원할 수 있고selenium/appnium 등 자동화 테스트, 인터페...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.