|
|
@ -59,7 +59,8 @@ public class CellServiceImpl extends ServiceImpl implements IC |
|
|
QueryWrapper<Cell> queryWrapper = Wrappers.query(); |
|
|
QueryWrapper<Cell> queryWrapper = Wrappers.query(); |
|
|
queryWrapper.eq("c.del_flag", 0); |
|
|
queryWrapper.eq("c.del_flag", 0); |
|
|
if (form.getStudyId() != null) { |
|
|
if (form.getStudyId() != null) { |
|
|
queryWrapper.eq("c.study_id", form.getStudyId()); |
|
|
|
|
|
|
|
|
queryWrapper.eq("c.study_id", form.getStudyId()) |
|
|
|
|
|
.eq("sc.study_id", form.getStudyId()); |
|
|
} |
|
|
} |
|
|
if (StringUtils.isNotEmpty(form.getMc())) { |
|
|
if (StringUtils.isNotEmpty(form.getMc())) { |
|
|
queryWrapper.like("c.mc", form.getMc()); |
|
|
queryWrapper.like("c.mc", form.getMc()); |
|
|
|