Commit 5334c02d authored by LiuLin's avatar LiuLin

Merge remote-tracking branch 'origin/develop_tzs_register' into develop_tzs_register

parents 90ac2660 083d01ce
...@@ -146,6 +146,13 @@ public class EquipmentCategoryServiceImpl extends BaseService<EquipmentCategoryD ...@@ -146,6 +146,13 @@ public class EquipmentCategoryServiceImpl extends BaseService<EquipmentCategoryD
@Override @Override
public List<Map<String, Object>> getUnitListByType(String type) { public List<Map<String, Object>> getUnitListByType(String type) {
if (type.equals("use")) {
type = "使用单位";
} else if (type.equals("maintenance")) {
type = "维保单位";
}
return equipmentCategoryMapper.getUnitListByType(type); return equipmentCategoryMapper.getUnitListByType(type);
} }
......
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