Commit 036d7ff7 by 胡懿

品名代码模糊查询删除逗号

parent ea35b37d
......@@ -28,7 +28,7 @@ public class MaterialTypeService extends TreeService<MaterialTypeMapper, Materia
public List<MaterialType> findList(MaterialType materialType) {
if (StringUtils.isNotBlank(materialType.getParentIds())){
materialType.setParentIds(","+materialType.getParentIds()+",");
materialType.setParentIds(materialType.getParentIds());
}
return super.findList(materialType);
}
......
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