|
@@ -36,7 +36,7 @@ public class StaffServiceImpl implements StaffService {
|
|
|
@Override
|
|
|
public TableDataInfo<StaffVo> selectPageStaffList(StaffBo staffBo, PageQuery pageQuery) {
|
|
|
QueryWrapper<Staff> qw=new QueryWrapper<>();
|
|
|
- qw.like(null!=staffBo.getMen_code(),"men_code",staffBo.getMen_code());
|
|
|
+ qw.like(null!=staffBo.getMenCode(),"men_code",staffBo.getMenCode());
|
|
|
qw.like(null!=staffBo.getName(),"name",staffBo.getName());
|
|
|
qw.like(null!=staffBo.getPhone(),"phone",staffBo.getPhone());
|
|
|
qw.eq(StringUtils.isNotBlank(staffBo.getStatus()),"status",staffBo.getStatus());
|