@@ -167,6 +167,7 @@ public class QueryInspectionFilePageListByWorkOrderIdService { | |||
for (String str : imageList) { | |||
handlerImages += CommonConfig.imageURL + str + ","; | |||
} | |||
handlerImages = handlerImages.substring(0, handlerImages.length() - 1); | |||
inspectionFileCheckRecord.setHandlerImage(handlerImages); | |||
} | |||
} |
@@ -309,6 +309,7 @@ public class InspectionFileServiceImpl implements IInspectionFileService { | |||
for (String str : imageList) { | |||
handlerImages += CommonConfig.imageURL + str + ","; | |||
} | |||
handlerImages = handlerImages.substring(0, handlerImages.length() - 1); | |||
inspectionFileCheckRecord.setHandlerImage(handlerImages); | |||
} | |||
} |
@@ -448,6 +448,7 @@ public class WorkOrderServiceImpl extends BaseServiceImpl<WorkOrderMapper, WorkO | |||
for (String str : imageList) { | |||
handlerImages += CommonConfig.imageURL + str + ","; | |||
} | |||
handlerImages = handlerImages.substring(0, handlerImages.length() - 1); | |||
inspectionFileCheckRecord.setHandlerImage(handlerImages); | |||
} | |||
} |