Commit 1d6ebea7 authored by tangwei's avatar tangwei

修改bug

parent 614156a1
...@@ -53,7 +53,7 @@ public interface EquipmentCategoryMapper extends BaseMapper<EquipmentCategory> { ...@@ -53,7 +53,7 @@ public interface EquipmentCategoryMapper extends BaseMapper<EquipmentCategory> {
int checkUsed( String id ); int checkUsed( String id );
List<EquipmentCategory> getEquipmentCategoryList(Integer head); List<EquipmentCategory> getEquipmentCategoryList(Integer head);
List<EquipmentCategory> getEquipmentCategoryListNew( @Param("head") Integer code, @Param("type") String type); List<EquipmentCategory> getEquipmentCategoryListNew( @Param("head") Integer code, @Param("carCode") String carCode, @Param("waterCode") String waterCode);
List<Map<String,Object>> getequipmentListEQNew(); List<Map<String,Object>> getequipmentListEQNew();
List<EquipmentCategory> getEquipmentCategoryListNotFacilities(Integer head); List<EquipmentCategory> getEquipmentCategoryListNotFacilities(Integer head);
......
...@@ -390,9 +390,12 @@ public class EquipmentCategoryServiceImpl extends ServiceImpl<EquipmentCategoryM ...@@ -390,9 +390,12 @@ public class EquipmentCategoryServiceImpl extends ServiceImpl<EquipmentCategoryM
public List<EquipmentCategory> getEquipmentCategoryList(Integer head) { public List<EquipmentCategory> getEquipmentCategoryList(Integer head) {
return this.baseMapper.getEquipmentCategoryList(head); return this.baseMapper.getEquipmentCategoryList(head);
} }
@Override @Override
public List<EquipmentCategory> getEquipmentCategoryListNew(Integer head,String type) { public List<EquipmentCategory> getEquipmentCategoryListNew(Integer head, String carCode, String waterCode) {
return this.baseMapper.getEquipmentCategoryListNew(head,type); return this.baseMapper.getEquipmentCategoryListNew(head,carCode,waterCode);
} }
@Override @Override
......
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