提交
This commit is contained in:
@ -25,5 +25,10 @@ public class TbZdxlFgdwQuery extends BasePage {
|
|||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "名称")
|
@ApiModelProperty(value = "名称")
|
||||||
private String mc;
|
private String mc;
|
||||||
|
/**
|
||||||
|
* 名称
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "所属部门代码")
|
||||||
|
private String ssdbmdm;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -7,6 +7,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import com.mosty.base.model.dto.yjzl.TbZdxlFgdwSaveDTO;
|
import com.mosty.base.model.dto.yjzl.TbZdxlFgdwSaveDTO;
|
||||||
import com.mosty.base.model.dto.yjzl.TbZdxlFgdwUpdateDTO;
|
import com.mosty.base.model.dto.yjzl.TbZdxlFgdwUpdateDTO;
|
||||||
|
import com.mosty.base.model.entity.yjzl.TbYjxx;
|
||||||
import com.mosty.base.model.entity.yjzl.zddw.TbZdxlFgdw;
|
import com.mosty.base.model.entity.yjzl.zddw.TbZdxlFgdw;
|
||||||
import com.mosty.base.model.query.yjzl.TbZdxlFgdwQuery;
|
import com.mosty.base.model.query.yjzl.TbZdxlFgdwQuery;
|
||||||
import com.mosty.base.model.vo.base.DeptInfoVo;
|
import com.mosty.base.model.vo.base.DeptInfoVo;
|
||||||
@ -84,7 +85,8 @@ public class TbZdxlFgdwServiceImpl extends ServiceImpl<TbZdxlFgdwMapper, TbZdxlF
|
|||||||
|
|
||||||
//返回Page
|
//返回Page
|
||||||
IPage<TbZdxlFgdwVO> resultPage = new Page<>(query.getPageCurrent(), query.getPageSize());
|
IPage<TbZdxlFgdwVO> resultPage = new Page<>(query.getPageCurrent(), query.getPageSize());
|
||||||
|
String ssbm = this.tbBaseAdaptRemoteService.getSsbm(query.getSsdbmdm(), null);
|
||||||
|
qw.lambda().likeRight(StringUtils.isNotBlank(ssbm), TbZdxlFgdw::getSsbmdm, ssbm);
|
||||||
//查询数据
|
//查询数据
|
||||||
page = this.baseMapper.selectPage(page, qw);
|
page = this.baseMapper.selectPage(page, qw);
|
||||||
List<TbZdxlFgdw> list = page.getRecords();
|
List<TbZdxlFgdw> list = page.getRecords();
|
||||||
|
|||||||
Reference in New Issue
Block a user